aboutsummaryrefslogtreecommitdiff
path: root/hotline/transaction_handlers.go
diff options
context:
space:
mode:
authorJeff Halter <868228+jhalter@users.noreply.github.com>2022-06-21 09:18:56 -0700
committerJeff Halter <868228+jhalter@users.noreply.github.com>2022-06-21 09:18:56 -0700
commite00ff8fe2e1b878abfa3d1bfd12449d5f2bb5f59 (patch)
tree5561aff80611902b5907c147f766253099175fa9 /hotline/transaction_handlers.go
parentf22acf38da970aa0d865a9978c9499dad01d235f (diff)
Fix some Windows compatibility issues
Diffstat (limited to 'hotline/transaction_handlers.go')
-rw-r--r--hotline/transaction_handlers.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/hotline/transaction_handlers.go b/hotline/transaction_handlers.go
index c3b8c59..f080047 100644
--- a/hotline/transaction_handlers.go
+++ b/hotline/transaction_handlers.go
@@ -5,6 +5,7 @@ import (
"encoding/binary"
"errors"
"fmt"
+ "github.com/davecgh/go-spew/spew"
"gopkg.in/yaml.v3"
"io/ioutil"
"math/big"
@@ -1658,6 +1659,8 @@ func HandleGetFileNameList(cc *ClientConn, t *Transaction) (res []Transaction, e
return res, err
}
+ spew.Dump(fullPath)
+
var fp FilePath
if t.GetField(fieldFilePath).Data != nil {
if err = fp.UnmarshalBinary(t.GetField(fieldFilePath).Data); err != nil {