fix: Less log clutter about tags

This commit is contained in:
Sorunome 2021-09-22 14:28:16 +02:00 committed by Nicolas Werner
parent d8986f1d10
commit b455a54304
1 changed files with 1 additions and 1 deletions

View File

@ -635,7 +635,7 @@ class Room {
static Tag _tryTagFromJson(Object o) {
if (o is Map<String, dynamic>) {
return Tag(
order: o.tryGet<num>('order')?.toDouble(),
order: o.tryGet<num>('order', TryGet.silent)?.toDouble(),
additionalProperties: Map.from(o)..remove('order'));
}
return Tag();