Skip to content
This repository has been archived by the owner on May 26, 2022. It is now read-only.

Commit

Permalink
Fix the incomplete sync background task.
Browse files Browse the repository at this point in the history
  • Loading branch information
woachk committed Apr 12, 2017
1 parent 52dd483 commit cde7ba3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MastodonUWA/SyncBackgroundTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ void IBackgroundTask.Run(IBackgroundTaskInstance taskInstance)
string stdata = new string((text3.Skip(5)).ToArray());
if (text2[1] == " notification")
{
NotificationClass notification = NotificationClass.parseNotification(stdata);
dynamic notification = NotificationClass_new.parseNotification(stdata);
if (notification.id != null)
{
if (notification.type == "favourite")
Expand Down

0 comments on commit cde7ba3

Please sign in to comment.