Skip to content

Commit

Permalink
Merge pull request #22 from Narazaka/patch-2
Browse files Browse the repository at this point in the history
fix: import playlist error
  • Loading branch information
JLChnToZ authored Dec 18, 2023
2 parents 44f71f2 + 203ed9d commit 44f5687
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ void LoadEntries(JsonData entries) {
try {
var title = entry["title"].ToString();
var url = entry["url"].ToString();
var urlForQuest = entry["urlForQuest"].ToString();
var urlForQuest = entry["urlForQuest"]?.ToString();
var playerIndex = (int)entry["playerIndex"];
selectedPlayList.entries.Add(new PlayListEntry {
title = title,
Expand Down

0 comments on commit 44f5687

Please sign in to comment.