diff options
| author | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-13 02:54:36 +0000 |
|---|---|---|
| committer | supahgreg <supahgreg@users.noreply.github.com> | 2025-10-13 02:54:36 +0000 |
| commit | 7d6d32144177ce8c516092a114435988864ff6fa (patch) | |
| tree | 2420651070b680ee282862a14c8a9cd5cb1b7310 /js/Feeds.js | |
| parent | 20d2ddabdbc70c3f8f15807ace5bd226082f6a50 (diff) | |
Address remaining ESLint 'no-undef' and 'no-unused-vars' occurrences.
* https://eslint.org/docs/latest/rules/no-undef
* https://eslint.org/docs/latest/rules/no-unused-vars
Diffstat (limited to 'js/Feeds.js')
| -rw-r--r-- | js/Feeds.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/js/Feeds.js b/js/Feeds.js index bfe901737..f99d86943 100644 --- a/js/Feeds.js +++ b/js/Feeds.js @@ -544,7 +544,7 @@ const Feeds = { if (tree && tree.model) return tree.model.getFeedUnread(feed, is_cat); - } catch (e) { + } catch { // } @@ -557,7 +557,7 @@ const Feeds = { if (tree && tree.model) return tree.getFeedCategory(feed); - } catch (e) { + } catch { // } @@ -584,7 +584,7 @@ const Feeds = { if (tree && tree.model) return tree.model.setFeedValue(feed, is_cat, key, value); - } catch (e) { + } catch { // } }, @@ -595,7 +595,7 @@ const Feeds = { if (tree && tree.model) return tree.model.getFeedValue(feed, is_cat, key); - } catch (e) { + } catch { // } return ''; |