Compare commits
2 Commits
d93a00066a
...
424be16ab0
Author | SHA1 | Date | |
---|---|---|---|
424be16ab0 | |||
29a975235c |
@ -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">
|
||||
|
@ -79,8 +79,8 @@ class EventMessageBody {
|
||||
|
||||
factory EventMessageBody.fromJson(Map<String, dynamic> json) =>
|
||||
EventMessageBody(
|
||||
text: json['text'],
|
||||
algorithm: json['algorithm'],
|
||||
text: json['text'] ?? '',
|
||||
algorithm: json['algorithm'] ?? 'plain',
|
||||
attachments: json['attachments'] != null
|
||||
? List<int>.from(json['attachments'].map((x) => x))
|
||||
: null,
|
||||
|
Loading…
x
Reference in New Issue
Block a user