Skip to content

Commit

Permalink
minor UI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
GrakovNe committed Dec 21, 2024
1 parent 482259b commit 5acd54e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ fun LibraryFallbackComposable(
searchRequested -> null
isLocalCache -> when (libraryViewModel.fetchPreferredLibraryType()) {
LibraryType.PODCAST -> stringResource(R.string.the_offline_podcasts_is_empty)
else -> stringResource(R.string.the_offline_library_is_empty)
LibraryType.LIBRARY -> stringResource(R.string.the_offline_library_is_empty)
else -> null
}
hasNetwork.not() -> stringResource(R.string.no_internet_connection)
else -> stringResource(R.string.the_library_is_empty)
Expand Down

0 comments on commit 5acd54e

Please sign in to comment.