public IEnumerator SavePlaylistCoroutine(string path = "") { Logger.Log($"Saving playlist \"{playlistTitle}\"..."); try { image = Sprites.SpriteToBase64(icon); playlistSongCount = songs.Count; } catch (Exception e) { Logger.Exception("Unable to save playlist! Exception: " + e); yield break; } foreach (PlaylistSong song in songs) { yield return(song.MatchKey()); } try { if (!string.IsNullOrEmpty(path)) { fileLoc = Path.GetFullPath(path); } File.WriteAllText(fileLoc, JsonConvert.SerializeObject(this, Formatting.Indented)); Logger.Log("Playlist saved!"); } catch (Exception e) { Logger.Exception("Unable to save playlist! Exception: " + e); yield break; } }
public IEnumerator SavePlaylistCoroutine(string path = "") { Logger.Log($"Saving playlist \"{playlistTitle}\"..."); try { if (icon != null) { image = Sprites.SpriteToBase64(icon); } else { image = null; } playlistSongCount = songs.Count; } catch (Exception e) { Logger.Exception("Unable to save playlist! Exception: " + e); yield break; } // match key if we can, not really that important anymore if (SongDataCore.Plugin.BeatSaver.Data.Songs.Count > 0) { foreach (PlaylistSong song in songs) { yield return(song.MatchKey()); } } try { if (!string.IsNullOrEmpty(path)) { fileLoc = Path.GetFullPath(path); } File.WriteAllText(fileLoc, JsonConvert.SerializeObject(this, Formatting.Indented)); Logger.Log("Playlist saved!"); } catch (Exception e) { Logger.Exception("Unable to save playlist! Exception: " + e); yield break; } }