Fix webtorrent support on i386

This commit is contained in:
Alexey Khit
2023-03-12 19:54:33 +03:00
parent 0382fbf8a9
commit 31c86272bb
+1 -1
View File
@@ -17,7 +17,7 @@ type Cipher struct {
}
func NewCipher(share, pwd, nonce string) (*Cipher, error) {
timestamp, err := strconv.ParseInt(nonce, 36, 0)
timestamp, err := strconv.ParseInt(nonce, 36, 64)
if err != nil {
return nil, err
}