Skip to content

Commit

Permalink
Add more status messages
Browse files Browse the repository at this point in the history
  • Loading branch information
allanx2000 committed Feb 12, 2017
1 parent 509015c commit 75f2caf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DevRant.WPF/DevRant.WPF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>7</ApplicationRevision>
<ApplicationRevision>8</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
Expand Down
4 changes: 2 additions & 2 deletions DevRant.WPF/FollowedUserChecker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ private async void RunChecker()
{
long latest = added.Max(x => x.CreatedTime);
ds.FollowedUsersLastChecked = latest;

SendUpdate(added.Count);
}

SendUpdate(added.Count);

int millis = ds.FollowedUsersUpdateInterval * 60 * 1000;
Thread.Sleep(millis);
}
Expand Down
1 change: 1 addition & 0 deletions DevRant.WPF/MainWindowViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,7 @@ private async Task LoadFeed(FeedType type, RantSort sort = RantSort.Algo, StoryR
UpdateFollow();

currentSection = type;
UpdateStatus("Loaded " + rants.Count + " rants");
}

public Visibility PostVisibility
Expand Down

0 comments on commit 75f2caf

Please sign in to comment.