Skip to content

Commit

Permalink
Use hashed URLs for Wallabag 2.4+
Browse files Browse the repository at this point in the history
I'd thought this feature was introduced in Wallabag 2.6.0, but it was
actually in Wallabag 2.4.0, so we can widen the version range a little.
  • Loading branch information
00dani authored and Simounet committed Mar 20, 2024
1 parent 2ef77aa commit 45aa7c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wallabagger/js/wallabag-api.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ WallabagApi.prototype = {

SupportsHashedUrl: function () {
return this.GetVersion().then(([major, minor]) => {
return (major > 2) || (major === 2 && minor >= 6);
return (major > 2) || (major === 2 && minor >= 4);
});
},

Expand Down

0 comments on commit 45aa7c8

Please sign in to comment.