-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: pong response & chunked upload #59
base: main
Are you sure you want to change the base?
Conversation
@@ -55,7 +55,7 @@ Dictionary<string, object> data | |||
createdAt: map["$createdAt"].ToString(), | |||
updatedAt: map["$updatedAt"].ToString(), | |||
permissions: ((JArray)map["$permissions"]).ToObject<List<string>>(), | |||
data: map | |||
, data: map |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm this doesnt look right
@@ -19,7 +19,7 @@ Dictionary<string, object> data | |||
} | |||
|
|||
public static Preferences From(Dictionary<string, object> map) => new Preferences( | |||
data: map | |||
, data: map |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here
@@ -718,7 +718,7 @@ static Models.User Convert(Dictionary<string, object> it) => | |||
/// Delete an authenticator app. | |||
/// </para> | |||
/// </summary> | |||
public Task<Models.User> DeleteMfaAuthenticator(string userId, Appwrite.Enums.AuthenticatorType type) | |||
public Task<object> DeleteMfaAuthenticator(string userId, Appwrite.Enums.AuthenticatorType type) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should this be object
? this endpoint returns no content 🤔
min: map["min"] == null ? null : Convert.ToDouble(map["min"]), | ||
max: map["max"] == null ? null : Convert.ToDouble(map["max"]), | ||
xdefault: map["default"] == null ? null : Convert.ToDouble(map["default"]) | ||
min: map["min"] == null ? null :Convert.ToDouble(map["min"]), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe the space was useful for readability
min: map["min"] == null ? null : Convert.ToInt64(map["min"]), | ||
max: map["max"] == null ? null : Convert.ToInt64(map["max"]), | ||
xdefault: map["default"] == null ? null : Convert.ToInt64(map["default"]) | ||
min: map["min"] == null ? null :Convert.ToInt64(map["min"]), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some issues / bugs, but rest looks okay
Automated SDK update