diff options
author | Mario <mario@mariovavti.com> | 2025-05-09 09:42:29 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2025-05-09 09:42:29 +0000 |
commit | dfde321a3bfa463e10a6b4b05d96b7b995b6b51f (patch) | |
tree | ec70ca30f2728228ca405c686cd19b0f20f18c03 | |
parent | aab53c9fc92893986c1e7fca140d344b023d57d2 (diff) | |
download | volse-hubzilla-dfde321a3bfa463e10a6b4b05d96b7b995b6b51f.tar.gz volse-hubzilla-dfde321a3bfa463e10a6b4b05d96b7b995b6b51f.tar.bz2 volse-hubzilla-dfde321a3bfa463e10a6b4b05d96b7b995b6b51f.zip |
fix statObj
-rw-r--r-- | view/js/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/js/main.js b/view/js/main.js index f8c0ce802..1a723db15 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1290,7 +1290,7 @@ function request(id, mid, verb, parent, uuid) { if (verb === 'comment') { if (singlethread_modules.indexOf(module) !== -1) { - let stateObj = { uuid: uuid }; + let stateObj = { b64mid: uuid }; history.pushState(stateObj, '', module + '/' + uuid); } |