Skip to content

Instantly share code, notes, and snippets.

@fabianski7
Created March 6, 2021 21:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabianski7/ff4c51f75dfe70fb764e1fdea0ad9eba to your computer and use it in GitHub Desktop.
Save fabianski7/ff4c51f75dfe70fb764e1fdea0ad9eba to your computer and use it in GitHub Desktop.
From 70d4c9beae8d29573c331e72a5fa7364f052539b Mon Sep 17 00:00:00 2001
From: isomerized <codeberg.isomerized@simplelogin.co>
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