This commit is contained in:
Horis
2025-02-07 19:47:38 +08:00
parent 70363c652e
commit 9d7e8a0052
2 changed files with 3 additions and 2 deletions
@@ -132,7 +132,8 @@ class BookInfoEditActivity :
book.addType(bookType)
val customCoverUrl = tieCoverUrl.text?.toString()
book.customCoverUrl = if (customCoverUrl == book.coverUrl) null else customCoverUrl
book.customIntro = tieBookIntro.text?.toString()
val customIntro = tieBookIntro.text?.toString()
book.customIntro = if (customIntro == book.intro) null else customIntro
BookHelp.updateCacheFolder(oldBook, book)
viewModel.saveBook(book) {
setResult(Activity.RESULT_OK)
@@ -95,7 +95,7 @@
android:layout_height="wrap_content"
android:padding="16dp"
android:text="@string/ok"
android:visibility="invisible"
android:visibility="gone"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/book_info" />