Skip to content

Commit

Permalink
Removed dead link in keybind guide
Browse files Browse the repository at this point in the history
  • Loading branch information
Xithrius committed Oct 27, 2024
1 parent 5e8a7af commit 18a10b6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions book/src/keybinds/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@

All of the keybinds are in this section.

- [Dashboard](dashboard.md)
- [Normal](normal.md)
- [Insert mode(s)](insert.md)
- [Normal mode](normal.md)
- [Insert mode](insert.md)

## Troubleshooting

Expand Down
2 changes: 1 addition & 1 deletion src/emotes/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ pub fn load_picker_emote(
// Decode emote in another thread, to avoid blocking main thread as decoding images is slow.
DECODE_EMOTE_SENDER
.get()
.ok_or(anyhow!("Decoding channel has not been initialized."))?
.ok_or_else(|| anyhow!("Decoding channel has not been initialized."))?
.try_send(image)
.map_err(|e| anyhow!("Unable to send emote to decoder thread. {e}"))?;

Expand Down

0 comments on commit 18a10b6

Please sign in to comment.