Skip to content

Commit

Permalink
Fix C&P error in roomData cache
Browse files Browse the repository at this point in the history
  • Loading branch information
hjtappe committed Dec 11, 2024
1 parent 50de61a commit 26d48ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/data/model/room_data.dart
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class RoomData extends ModelItem {
imageUrl: json['imageUrl'],
name: json['name'] as String? ?? '',
details: json['details'] as String? ?? '',
mapImageUrl: json['details'] as String? ?? '',
mapImageUrl: json['mapImageUrl'] as String? ?? '',
);
}

Expand Down

0 comments on commit 26d48ea

Please sign in to comment.