dont filter out intents

This commit is contained in:
Fabian Freund
2025-09-22 11:01:31 +02:00
parent 35d1405618
commit 4661386024
2 changed files with 10 additions and 1 deletions
@@ -71,4 +71,13 @@ class EngineBoundIntentStream extends _$EngineBoundIntentStream {
_streamController.stream,
]);
}
@override
bool updateShouldNotify(
AsyncValue<SharedContent> previous,
AsyncValue<SharedContent> next,
) {
// Always notify if e.g. same link opened consecutive that are elseiwese filtered on == comaprison
return true;
}
}
@@ -34,7 +34,7 @@ final class EngineBoundIntentStreamProvider
}
String _$engineBoundIntentStreamHash() =>
r'860e39a7b608d579f7383e2199719067ad26f268';
r'd47f50ee8f548fe0416b8ed01bb02adbd79b3386';
abstract class _$EngineBoundIntentStream
extends $StreamNotifier<SharedContent> {