Don't crash on unimplemented sorts

This commit is contained in:
Drew DeVault 2017-03-15 20:18:20 -04:00
parent 3aecbf5739
commit db5a1e241a
1 changed files with 2 additions and 1 deletions

View File

@ -197,7 +197,8 @@ public void Sort(SortMode mode)
});
break;
default:
throw new NotImplementedException();
Sort(SortMode.Artist); // Temporary
break;
}
scrollableContent.Clear(false);