Skip to content

Commit 7720989

Browse files
committed
Fixed to_key() issue
1 parent 17a3116 commit 7720989

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gooey/internal/core.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ end
9999
function M.to_key(hsh)
100100
local url = msg.url()
101101
return hash_to_hex(url.socket or EMPTY)
102-
.. hash_to_hex(url.path or empty)
103-
.. hash_to_hex(url.fragment or empty)
102+
.. hash_to_hex(url.path or EMPTY)
103+
.. hash_to_hex(url.fragment or EMPTY)
104104
.. hash_to_hex(hsh)
105105
end
106106

0 commit comments

Comments
 (0)