Skip to content

Commit eee35f8

Browse files
Merge pull request #61 from appwrite/dev
chore: fix build error
2 parents 3981180 + 6cadc97 commit eee35f8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Appwrite/Models/Document.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Dictionary<string, object> data
5555
createdAt: map["$createdAt"].ToString(),
5656
updatedAt: map["$updatedAt"].ToString(),
5757
permissions: ((JArray)map["$permissions"]).ToObject<List<string>>(),
58-
, data: map
58+
data: map
5959
);
6060

6161
public Dictionary<string, object?> ToMap() => new Dictionary<string, object?>()

Appwrite/Models/Preferences.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Dictionary<string, object> data
1919
}
2020

2121
public static Preferences From(Dictionary<string, object> map) => new Preferences(
22-
, data: map
22+
data: map
2323
);
2424

2525
public Dictionary<string, object?> ToMap() => new Dictionary<string, object?>()

0 commit comments

Comments
 (0)