Use result of local storage insert operation to suppress Clippy

pull/810/head
Kitaiti Makoto 4年前
コミット 36fd55a7e4

@ -269,7 +269,13 @@ pub fn init() -> Result<(), EditorError> {
let editor_button = document().create_element("a")?;
js! { @{&editor_button}.href = "#"; }
editor_button.add_event_listener(|_: ClickEvent| {
window().local_storage().insert("basic-editor", "false");
if window()
.local_storage()
.insert("basic-editor", "false")
.is_err()
{
console!(log, "Failed to write into local storage");
}
window().history().go(0).ok(); // refresh
});
editor_button.append_child(

読み込み中…
キャンセル
保存