We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea5cd48 commit b8e0143Copy full SHA for b8e0143
lib/model/store.dart
@@ -426,8 +426,11 @@ abstract class PerAccountStoreBase {
426
/// Always equal to `account.realmName`.
427
String get realmName => account.realmName!;
428
429
- /// Always equal to `account.realmIcon`.
430
- Uri get realmIcon => account.realmIcon!;
+ /// The full, resolved URL for the Zulip realm icon.
+ ///
431
+ /// Returned URL is derived by resolving [account.realmIcon] (relative) URL
432
+ /// against the base [realmUrl].
433
+ Uri get resolvedRealmIcon => realmUrl.resolveUri(account.realmIcon!);
434
435
/// Resolve [reference] as a URL relative to [realmUrl].
436
///
0 commit comments