notifications icon indicating copy to clipboard operation
notifications copied to clipboard

Combine and limit delete-notification pushes

Open nickvergessen opened this issue 3 years ago • 1 comments

Currently all mobile clients always receive all delete-pushes. iOS ignores silent background notifications if there are too many, so we plan to limit and combine them:

  • [ ] Only send talk to talk apps and all others to the files app
  • [ ] Combine the multiple deletes into 1 push, so instead of:
			[
				'nid' => 13,
				'delete' => true,
			]
			[
				'nid' => 42,
				'delete' => true,
			]
			[
				'nid' => 23,
				'delete' => true,
			]

the Talk iOS app receives:

			[
				'nids' => [13, 42, 23],
				'delete-multiple' => true,
			]

nickvergessen avatar Apr 19 '21 15:04 nickvergessen

moving to 25

blizzz avatar May 03 '22 10:05 blizzz

Fixed by https://github.com/nextcloud/notifications/pull/1429 and included in 26.0.0 ?

SystemKeeper avatar Mar 22 '23 14:03 SystemKeeper