Skip to content

Commit

Permalink
fixes #2657
Browse files Browse the repository at this point in the history
  • Loading branch information
retorquere committed Sep 22, 2023
1 parent 4b4cb2e commit 6cf1873
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/ZoteroPane.ts
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ class ZoteroPane {
let path = `/${encodeURIComponent(collection.name)}`
while (collection.parent) {
collection = Zotero.Collections.get(collection.parent)
path = `/${encodeURIComponent(collection.name)}/${path}`
path = `/${encodeURIComponent(collection.name)}${path}`
}
params.url.long = `${root}/collection?/${collection.libraryID || 0}${path}`
}
Expand Down

0 comments on commit 6cf1873

Please sign in to comment.