Example #1
0
 /// <summary>
 /// Changes the wallpaper.
 /// </summary>
 private void SyncFiles()
 {
     try
     {
         if (GetSyncFrequency() != SyncFrequency.Never)
         {
             _fileSync.SyncFilesAsync();
         }
     }
     catch (Exception exception)
     {
         ExceptionHelper.HandleException("Error syncing files", exception);
     }
 }