Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
remove parse.com refs
  • Loading branch information
mtrezza committed May 20, 2024
commit 2e383d2757b2712296afaf67398cfe0b6a074b63
3 changes: 1 addition & 2 deletions Parse/Infrastructure/ParseFailureException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ public enum ErrorCode

/// <summary>
/// Error code indicating that something has gone wrong with the server.
/// If you get this error code, it is Parse's fault. Please report the bug to
/// https://parse.com/help.
/// If you get this error code, it is Parse's fault. Please report the bug.
/// </summary>
InternalServerError = 1,

Expand Down
4 changes: 2 additions & 2 deletions Parse/Platform/Push/ParsePush.cs
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ void MutateState(Action<MutablePushState> func)
/// Request a push to be sent. When this task completes, Parse has successfully acknowledged a request
/// to send push notifications but has not necessarily finished sending all notifications
/// requested. The current status of recent push notifications can be seen in your Push Notifications
/// console on http://parse.com
/// console.
/// </summary>
/// <returns>A Task for continuation.</returns>
public Task SendAsync() => SendAsync(CancellationToken.None);
Expand All @@ -204,7 +204,7 @@ void MutateState(Action<MutablePushState> func)
/// Request a push to be sent. When this task completes, Parse has successfully acknowledged a request
/// to send push notifications but has not necessarily finished sending all notifications
/// requested. The current status of recent push notifications can be seen in your Push Notifications
/// console on http://parse.com
/// console.
/// </summary>
/// <param name="cancellationToken">CancellationToken to cancel the current operation.</param>
public Task SendAsync(CancellationToken cancellationToken) => Services.PushController.SendPushNotificationAsync(State, Services, cancellationToken);
Expand Down