From 07a20040a43abf38d6a77365bbd6b8c3b0dabd8c Mon Sep 17 00:00:00 2001 From: William Casarin Date: Wed, 15 Mar 2023 15:41:11 -0600 Subject: [PATCH] Bump notification limit from 100 to 500 Changelog-Changed: Bump notification limit from 100 to 500 --- damus/Models/HomeModel.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/Models/HomeModel.swift b/damus/Models/HomeModel.swift index ddcee25b..ee897ea5 100644 --- a/damus/Models/HomeModel.swift +++ b/damus/Models/HomeModel.swift @@ -391,7 +391,7 @@ class HomeModel: ObservableObject { NostrKind.zap.rawValue, ]) notifications_filter.pubkeys = [damus_state.pubkey] - notifications_filter.limit = 100 + notifications_filter.limit = 500 var home_filters = [home_filter] var notifications_filters = [notifications_filter]