Compare commits

..

No commits in common. "424be16ab0c2e1efeb4f1579cf0eba3219839141" and "d93a00066a192466f8f895522de032e1b91604a0" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" android:maxSdkVersion="30" />
<application
android:label="Solian"
android:label="solian"
android:name="${applicationName}"
android:icon="@mipmap/launcher_icon"
android:supportsRtl="true">

View File

@ -79,8 +79,8 @@ class EventMessageBody {
factory EventMessageBody.fromJson(Map<String, dynamic> json) =>
EventMessageBody(
text: json['text'] ?? '',
algorithm: json['algorithm'] ?? 'plain',
text: json['text'],
algorithm: json['algorithm'],
attachments: json['attachments'] != null
? List<int>.from(json['attachments'].map((x) => x))
: null,