We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The text was updated successfully, but these errors were encountered:
update 호출하도록 코드를 수정하는 과정에서 조건문 수정하는 것을 빠트렸다.
if (shared != it.shared && title == it.deckTitle){ database.child("all/decks/${it.key}").apply { child("deckTitle").setValue(title) child("shared").setValue(shared) } deck.value!!.deckTitle = title deck.value!!.shared = shared update() }
↓↓↓↓↓↓↓↓↓↓↓↓↓
if (shared != it.shared || title != it.deckTitle){ database.child("all/decks/${it.key}").apply { child("deckTitle").setValue(title) child("shared").setValue(shared) } deck.value!!.deckTitle = title deck.value!!.shared = shared update() }
Sorry, something went wrong.
#12 제목 수정 조건문 고침, #4 update 뷰모델에서 호출
5e71502
No branches or pull requests
버그 설명
The text was updated successfully, but these errors were encountered: