-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
Fix ui issues #29
Fix ui issues #29
Conversation
New Release
65adcf5
to
472d9b5
Compare
c8446ad
to
d0f6200
Compare
app/src/parser.c
Outdated
return parser_ok; | ||
default: | ||
break; | ||
} | ||
|
||
return parser_display_idx_out_of_range; | ||
return parser_ok; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we return ok if we get here? Shouldn't it be an error?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes it should! I will fix it!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Another comment
app/rust/src/lib.rs
Outdated
.hash(&key_input) | ||
.as_bytes() | ||
.try_into() | ||
.expect("has has incorrect length") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo here. Besides, this will panic. Shouldn't we handle the error differently?
No description provided.