Skip to content

Commit

Permalink
Another stupid mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
lay295 committed Nov 16, 2021
1 parent 29a6006 commit b0614ad
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions Setup/Setup.vdproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
}
"Entry"
{
"MsmKey" = "8:_993D260AAB70475F914A1CC364FE6BC1"
"MsmKey" = "8:_C458D6C8CA9C4EEA93EA164512CB747C"
"OwnerKey" = "8:_UNDEFINED"
"MsmSig" = "8:_UNDEFINED"
}
Expand Down Expand Up @@ -148,9 +148,9 @@
"IsDependency" = "11:FALSE"
"IsolateTo" = "8:"
}
"{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_993D260AAB70475F914A1CC364FE6BC1"
"{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C458D6C8CA9C4EEA93EA164512CB747C"
{
"SourcePath" = "8:..\\..\\..\\..\\Downloads\\archive_wF(1).ico"
"SourcePath" = "8:..\\TwitchArchiverWPF\\logo.ico"
"TargetName" = "8:logo.ico"
"Tag" = "8:"
"Folder" = "8:_2489E2E444404492851A7DE4124D6926"
Expand Down Expand Up @@ -356,7 +356,7 @@
"Target" = "8:_CC41110DB5804FF4AAD149D9A80A33A7"
"Folder" = "8:_C2CFB9BF72E44500B476E349044E13C5"
"WorkingFolder" = "8:_2489E2E444404492851A7DE4124D6926"
"Icon" = "8:_993D260AAB70475F914A1CC364FE6BC1"
"Icon" = "8:_C458D6C8CA9C4EEA93EA164512CB747C"
"Feature" = "8:"
}
"{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_D11F5EA0478C4C7AAF29ED79F95A2662"
Expand All @@ -370,7 +370,7 @@
"Target" = "8:_CC41110DB5804FF4AAD149D9A80A33A7"
"Folder" = "8:_66CEB066D4244AA6A54BCF1B0AFB65A8"
"WorkingFolder" = "8:_2489E2E444404492851A7DE4124D6926"
"Icon" = "8:_993D260AAB70475F914A1CC364FE6BC1"
"Icon" = "8:_C458D6C8CA9C4EEA93EA164512CB747C"
"Feature" = "8:"
}
}
Expand Down Expand Up @@ -774,7 +774,7 @@
{
"{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_CC41110DB5804FF4AAD149D9A80A33A7"
{
"SourcePath" = "8:..\\TwitchArchiverWPF\\obj\\Release\\net5.0-windows\\apphost.exe"
"SourcePath" = "8:..\\TwitchArchiverWPF\\obj\\Debug\\net5.0-windows\\apphost.exe"
"TargetName" = "8:"
"Tag" = "8:"
"Folder" = "8:_2489E2E444404492851A7DE4124D6926"
Expand Down
2 changes: 1 addition & 1 deletion TwitchArchiverWPF/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ private void backgroundWorker_DoWork(object? sender, DoWorkEventArgs e)
if ((streamerList[i].OverrideRecordingSettings && checkCount % streamerList[i].RecordingSettings.LiveCheck == 0) || (!streamerList[i].OverrideRecordingSettings && checkCount % globalSettings.RecordingSettings.LiveCheck == 0))
{
bool updatedToken = true;
if (!accessTokens.ContainsKey(streamerList[i].Id) || DateTime.Now.CompareTo(accessTokens[streamerList[i].Id].expires.AddMinutes(-5)) < 0)
if (!accessTokens.ContainsKey(streamerList[i].Id) || DateTime.Now.CompareTo(accessTokens[streamerList[i].Id].expires.AddMinutes(-5)) > 0)
{
updatedToken = RefreshToken(streamerList[i], accessTokens, globalSettings);
}
Expand Down

0 comments on commit b0614ad

Please sign in to comment.