File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -453,7 +453,7 @@ class _PostViewPageState extends State<PostViewPage>
453453 child: Row (
454454 children: < Widget > [
455455 CircleAvatar (
456- backgroundImage: Platform .isWindows
456+ backgroundImage: kIsWeb || Platform .isWindows
457457 ? NetworkImage (
458458 "${AppSettings .currentBaseUrl }/data/avatars/${_post .creatorId }.jpg" )
459459 : CachedNetworkImageProvider (
Original file line number Diff line number Diff line change @@ -442,7 +442,7 @@ class _PostViewPageByPostIDState extends State<PostViewPageByPostID>
442442 child: Row (
443443 children: < Widget > [
444444 CircleAvatar (
445- backgroundImage: Platform .isWindows
445+ backgroundImage: kIsWeb || Platform .isWindows
446446 ? NetworkImage (
447447 "${AppSettings .currentBaseUrl }/data/avatars/${_post .creatorId }.jpg" )
448448 : CachedNetworkImageProvider (
You can’t perform that action at this time.
0 commit comments