Skip to content

Commit

Permalink
Remove StdItemQuery
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsvanvelzen committed Jun 9, 2024
1 parent f43916f commit 8d12542
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 28 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

import org.jellyfin.androidtv.R;
import org.jellyfin.androidtv.constant.CustomMessage;
import org.jellyfin.androidtv.data.querying.StdItemQuery;
import org.jellyfin.androidtv.data.repository.CustomMessageRepository;
import org.jellyfin.androidtv.data.repository.ItemMutationRepository;
import org.jellyfin.androidtv.ui.itemhandling.AudioQueueBaseRowItem;
Expand All @@ -24,6 +23,7 @@
import org.jellyfin.apiclient.interaction.Response;
import org.jellyfin.apiclient.model.entities.SortOrder;
import org.jellyfin.apiclient.model.querying.ItemFilter;
import org.jellyfin.apiclient.model.querying.ItemQuery;
import org.jellyfin.apiclient.model.querying.ItemsResult;
import org.jellyfin.sdk.model.api.BaseItemDto;
import org.jellyfin.sdk.model.api.BaseItemKind;
Expand Down Expand Up @@ -313,7 +313,7 @@ public void onError(Exception exception) {
});
return true;
case MENU_PLAY_FIRST_UNWATCHED:
StdItemQuery query = new StdItemQuery();
ItemQuery query = new ItemQuery();
query.setParentId(item.getId().toString());
query.setRecursive(true);
query.setIsVirtualUnaired(false);
Expand Down

0 comments on commit 8d12542

Please sign in to comment.