mirror of
https://github.com/immich-app/immich.git
synced 2025-07-19 22:44:24 +02:00
fix(mobile): setting to always display remote assets (#3044)
This commit is contained in:
parent
5869648f19
commit
615893be38
6 changed files with 26 additions and 6 deletions
mobile/lib/shared/ui
|
@ -43,7 +43,8 @@ class ImmichImage extends StatelessWidget {
|
|||
);
|
||||
}
|
||||
final Asset asset = this.asset!;
|
||||
if (asset.isLocal) {
|
||||
if (!asset.isRemote ||
|
||||
(asset.isLocal && !Store.get(StoreKey.preferRemoteImage, false))) {
|
||||
return Image(
|
||||
image: AssetEntityImageProvider(
|
||||
asset.local!,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue