Skip to content

Commit

Permalink
🐛 Fixed Genius Lyrics not copying
Browse files Browse the repository at this point in the history
  • Loading branch information
shub39 committed Sep 29, 2024
1 parent 6fc8ea4 commit 82af163
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ android {
applicationId = "com.shub39.rush"
minSdk = 29
targetSdk = 35
versionCode = 17
versionName = "2.3.0"
versionCode = 18
versionName = "2.3.1"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/shub39/rush/ui/page/LyricsPage.kt
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ fun LyricsPage(
if (selectedLines.isEmpty()) {
copyToClipBoard(
context,
nonNullSong.lyrics,
if (source == "LrcLib") nonNullSong.lyrics else nonNullSong.geniusLyrics ?: "",
"Complete Lyrics"
)
} else {
Expand Down

0 comments on commit 82af163

Please sign in to comment.