Skip to content

Commit

Permalink
fix: 例外を握りつぶしていた問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
pantasystem committed Jan 3, 2024
1 parent 12f8a90 commit 463079d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class NoteDetailViewModel @Inject constructor(
// noteRepository.syncConversation(note.id).getOrThrow()
noteRepository.syncThreadContext(note.id).getOrThrow()
// recursiveSync(note.id).getOrThrow()
noteRepository.sync(note.id)
noteRepository.sync(note.id).getOrThrow()
} catch (e: Exception) {
Log.w("NoteDetailViewModel", "loadDetail失敗", e)
}
Expand Down

0 comments on commit 463079d

Please sign in to comment.