Skip to content

Commit

Permalink
fix: Show question mark when flag is unknown
Browse files Browse the repository at this point in the history
  • Loading branch information
rbozan committed Nov 11, 2021
1 parent 7a6cc8a commit 63c89a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ impl Backend {
.map(|def| {
if has_flag || has_language {
let row_data = vec![
def.get_flag().unwrap_or_default(),
def.get_flag().unwrap_or("🏴󠁢󠁳󠁢󠁰󠁿".to_string()),
format!("**{}**", def.get_language().unwrap_or(&"".to_string())),
def.get_printable_value(),
];
Expand Down

0 comments on commit 63c89a6

Please sign in to comment.