We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0a65c86 + 7806a70 commit e17b1a1Copy full SHA for e17b1a1
app/src/main/java/org/schabi/newpipe/database/playlist/dao/PlaylistRemoteDAO.kt
@@ -28,7 +28,7 @@ interface PlaylistRemoteDAO : BasicDAO<PlaylistRemoteEntity> {
28
@Query("SELECT * FROM remote_playlists WHERE uid = :playlistId")
29
fun getPlaylist(playlistId: Long): Flowable<PlaylistRemoteEntity>
30
31
- @Query("SELECT * FROM remote_playlists WHERE url = :url AND uid = :serviceId")
+ @Query("SELECT * FROM remote_playlists WHERE url = :url AND service_id = :serviceId")
32
fun getPlaylist(serviceId: Long, url: String?): Flowable<MutableList<PlaylistRemoteEntity>>
33
34
@get:Query("SELECT * FROM remote_playlists ORDER BY display_index")
0 commit comments