@@ -268,6 +268,7 @@ class PerAccountStore extends ChangeNotifier with EmojiStore, ChannelStore, Mess
268
268
globalStore: globalStore,
269
269
connection: connection,
270
270
realmUrl: realmUrl,
271
+ realmWildcardMentionPolicy: initialSnapshot.realmWildcardMentionPolicy,
271
272
realmWaitingPeriodThreshold: initialSnapshot.realmWaitingPeriodThreshold,
272
273
maxFileUploadSizeMib: initialSnapshot.maxFileUploadSizeMib,
273
274
realmDefaultExternalAccounts: initialSnapshot.realmDefaultExternalAccounts,
@@ -311,6 +312,7 @@ class PerAccountStore extends ChangeNotifier with EmojiStore, ChannelStore, Mess
311
312
required GlobalStore globalStore,
312
313
required this .connection,
313
314
required this .realmUrl,
315
+ required this .realmWildcardMentionPolicy,
314
316
required this .realmWaitingPeriodThreshold,
315
317
required this .maxFileUploadSizeMib,
316
318
required this .realmDefaultExternalAccounts,
@@ -375,6 +377,7 @@ class PerAccountStore extends ChangeNotifier with EmojiStore, ChannelStore, Mess
375
377
Uri ? tryResolveUrl (String reference) => _tryResolveUrl (realmUrl, reference);
376
378
377
379
String get zulipVersion => account.zulipVersion;
380
+ final RealmWildcardMentionPolicy realmWildcardMentionPolicy;
378
381
/// For docs, please see [InitialSnapshot.realmWaitingPeriodThreshold] .
379
382
final int realmWaitingPeriodThreshold; // TODO(#668): update this realm setting
380
383
final int maxFileUploadSizeMib; // No event for this.
0 commit comments