We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2bbed3c commit 3d221a2Copy full SHA for 3d221a2
Jetcaster/core/src/main/java/com/example/jetcaster/core/data/database/dao/EpisodesDao.kt
@@ -40,10 +40,10 @@ abstract class EpisodesDao : BaseDao<Episode> {
40
"""
41
SELECT episodes.* FROM episodes
42
INNER JOIN podcasts ON episodes.podcast_uri = podcasts.uri
43
- WHERE episodes.uri = :uri
+ WHERE episodes.uri = :episodeUri
44
45
)
46
- abstract fun episodeAndPodcast(uri: String): Flow<EpisodeToPodcast>
+ abstract fun episodeAndPodcast(episodeUri: String): Flow<EpisodeToPodcast>
47
48
@Query(
49
0 commit comments