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" />
|
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" android:maxSdkVersion="30" />
|
||||||
|
|
||||||
<application
|
<application
|
||||||
android:label="solian"
|
android:label="Solian"
|
||||||
android:name="${applicationName}"
|
android:name="${applicationName}"
|
||||||
android:icon="@mipmap/launcher_icon"
|
android:icon="@mipmap/launcher_icon"
|
||||||
android:supportsRtl="true">
|
android:supportsRtl="true">
|
||||||
|
@ -79,8 +79,8 @@ class EventMessageBody {
|
|||||||
|
|
||||||
factory EventMessageBody.fromJson(Map<String, dynamic> json) =>
|
factory EventMessageBody.fromJson(Map<String, dynamic> json) =>
|
||||||
EventMessageBody(
|
EventMessageBody(
|
||||||
text: json['text'],
|
text: json['text'] ?? '',
|
||||||
algorithm: json['algorithm'],
|
algorithm: json['algorithm'] ?? 'plain',
|
||||||
attachments: json['attachments'] != null
|
attachments: json['attachments'] != null
|
||||||
? List<int>.from(json['attachments'].map((x) => x))
|
? List<int>.from(json['attachments'].map((x) => x))
|
||||||
: null,
|
: null,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user