示例#1
0
 private void UpdateStreamMeta()
 {
     Task.Run(() =>
     {
         try
         {
             SqualrApi.UpdateCheatStreamMeta(SettingsViewModel.GetInstance().AccessTokens?.AccessToken, this);
         }
         catch (Exception ex)
         {
             OutputViewModel.GetInstance().Log(OutputViewModel.LogLevel.Error, "Error updating stream with local change. Try again.", ex);
         }
     });
 }