Created
March 6, 2021 21:10
-
-
Save fabianski7/ff4c51f75dfe70fb764e1fdea0ad9eba to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 70d4c9beae8d29573c331e72a5fa7364f052539b Mon Sep 17 00:00:00 2001 | |
From: isomerized <[email protected]> | |
Date: Sat, 6 Mar 2021 18:09:30 -0300 | |
Subject: [PATCH] increase rss limit rule | |
--- | |
src/renderer/views/Subscriptions/Subscriptions.js | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
diff --git a/src/renderer/views/Subscriptions/Subscriptions.js b/src/renderer/views/Subscriptions/Subscriptions.js | |
index e0b6ae5..bcacd5b 100644 | |
--- a/src/renderer/views/Subscriptions/Subscriptions.js | |
+++ b/src/renderer/views/Subscriptions/Subscriptions.js | |
@@ -130,7 +130,7 @@ export default Vue.extend({ | |
} | |
let useRss = this.useRssFeeds | |
- if (this.activeSubscriptionList.length >= 125 && !useRss) { | |
+ if (this.activeSubscriptionList.length >= 300 && !useRss) { | |
this.showToast({ | |
message: this.$t('Subscriptions["This profile has a large number of subscriptions. Forcing RSS to avoid rate limiting"]'), | |
time: 10000 | |
-- | |
2.30.1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment