musikr: fix broken cache pruning

This commit is contained in:
Alexander Capehart 2024-12-27 15:38:23 -05:00
parent 8b3d7cae9c
commit ebcedb49eb
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47

View file

@ -68,7 +68,7 @@ internal interface VisibleCacheDao {
@Transaction suspend fun touch(uri: String) = updateTouchedNs(uri, System.nanoTime())
@Query("UPDATE cachedsong SET touchedNs = :nowNs WHERE uri = :uri")
@Query("UPDATE CachedSong SET touchedNs = :nowNs WHERE uri = :uri")
suspend fun updateTouchedNs(uri: String, nowNs: Long)
}