We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ca14ea commit 24142e7Copy full SHA for 24142e7
wallabagger/js/background.js
@@ -456,8 +456,9 @@ function savePageToWallabag (url, resetIcon) {
456
457
const GotoWallabag = (part) => api.checkParams() && browser.tabs.create({ url: `${api.data.Url}/${part}/list` });
458
459
-const checkExist = (url) => {
460
- if (isServicePage(url)) { return; }
+const checkExist = (dirtyUrl) => {
+ if (isServicePage(dirtyUrl)) { return; }
461
+ const url = dirtyUrl.split('#')[0];
462
if (existCache.check(url)) {
463
const existsFlag = existCache.get(url);
464
if (existsFlag === existStates.exists) {
0 commit comments