Fix bookmark caching

This commit is contained in:
2023-11-18 14:41:07 +11:00
parent 9d6beadcd9
commit d611946e34
3 changed files with 4 additions and 4 deletions

View File

@@ -12,7 +12,7 @@ module Adamantium
bookmarks.each do |bookmark|
code = HTTParty.get(bookmark.url, follow_redirects: false).code
if code >= 400
bookmark_repo.update(bookmark.id, {url: "https://web.archive.org/web/*/#{bookmark.url}"})
bookmark_repo.update(bookmark.id, params: {url: "https://web.archive.org/web/*/#{bookmark.url}"})
end
end
end