fix: need to init underlying map

This commit is contained in:
Derrick Hammer 2024-03-03 07:16:24 -05:00
parent a5e5e76e37
commit 8c4ebeccd4
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 0 deletions

View File

@ -204,6 +204,8 @@ func (wafm *WebAppFileMap) DecodeMsgpack(decoder *msgpack.Decoder) error {
return err
}
wafm.Map = *linkedhashmap.New()
for i := 0; i < arrLen; i++ {
data := make([]interface{}, 3)