mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2026-09-17 14:41:21 +00:00
Merge pull request #12975 from dustdfg/playlist_button_work
Correct typo in playlist db sql query
This commit is contained in:
@@ -28,7 +28,7 @@ interface PlaylistRemoteDAO : BasicDAO<PlaylistRemoteEntity> {
|
|||||||
@Query("SELECT * FROM remote_playlists WHERE uid = :playlistId")
|
@Query("SELECT * FROM remote_playlists WHERE uid = :playlistId")
|
||||||
fun getPlaylist(playlistId: Long): Flowable<PlaylistRemoteEntity>
|
fun getPlaylist(playlistId: Long): Flowable<PlaylistRemoteEntity>
|
||||||
|
|
||||||
@Query("SELECT * FROM remote_playlists WHERE url = :url AND uid = :serviceId")
|
@Query("SELECT * FROM remote_playlists WHERE url = :url AND service_id = :serviceId")
|
||||||
fun getPlaylist(serviceId: Long, url: String?): Flowable<MutableList<PlaylistRemoteEntity>>
|
fun getPlaylist(serviceId: Long, url: String?): Flowable<MutableList<PlaylistRemoteEntity>>
|
||||||
|
|
||||||
@get:Query("SELECT * FROM remote_playlists ORDER BY display_index")
|
@get:Query("SELECT * FROM remote_playlists ORDER BY display_index")
|
||||||
|
|||||||
Reference in New Issue
Block a user