Skip to content

Commit 6c3e0a4

Browse files
committed
Correctly add metadata on about page
1 parent 481ae3a commit 6c3e0a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/widgets/tab.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -452,11 +452,11 @@ impl Tab {
452452
"about" => {
453453
let mut about = common::ABOUT_PAGE.to_owned();
454454
about.push_str(&format!(
455-
"App ID: {}\n Version: {}",
455+
"\n\n## Metadata\n\nApp ID: {}\nVersion: {}",
456456
crate::config::APP_ID,
457457
crate::config::VERSION
458458
));
459-
let reader = futures::io::BufReader::new(common::ABOUT_PAGE.as_bytes());
459+
let reader = futures::io::BufReader::new(about.as_bytes());
460460
self.display_gemini(reader).await?;
461461
Ok(None)
462462
}

0 commit comments

Comments
 (0)