fixup errors caused by bump

This commit is contained in:
Henry Hiles 2026-09-24 11:56:46 -04:00
commit 0636366359
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs
2 changed files with 3 additions and 2 deletions

View file

@ -57,7 +57,7 @@ class const Profile({
try {
return Profile.fromJson(json);
} catch (error) {
return _Profile(parseError: error.toString());
return Profile(parseError: error.toString());
}
}
}

View file

@ -33,7 +33,8 @@ class const Mentions({
_$MentionsFromJson(json);
}
@Freezed(toJson: false)
@Freezed(toJson: false, fromJson: false)
@JsonSerializable(createToJson: false)
class const Relation({
required final String eventId,
required final RelationType relationType,