优化
Some checks are pending
Test Build / prepare (push) Waiting to run
Test Build / build (app, release) (push) Blocked by required conditions
Test Build / build (app, releaseA) (push) Blocked by required conditions
Test Build / prerelease (push) Blocked by required conditions
Test Build / lanzou (push) Blocked by required conditions
Test Build / test_Branch (push) Blocked by required conditions
Test Build / telegram (push) Blocked by required conditions

This commit is contained in:
Horis
2025-02-07 19:47:38 +08:00
parent 762f912374
commit 3a63d37516
2 changed files with 3 additions and 2 deletions

View File

@@ -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)

View File

@@ -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" />