mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-28 12:04:13 +00:00
enshort constructions
This commit is contained in:
parent
c843e5b7c0
commit
4342796d1a
@ -91,10 +91,9 @@ impl Tab {
|
||||
action_page_reload.clone(),
|
||||
action_update.clone(),
|
||||
// Options
|
||||
match gobject.selected_page() {
|
||||
Some(page) => Some(gobject.page_position(&page) + 1),
|
||||
None => None,
|
||||
},
|
||||
gobject
|
||||
.selected_page()
|
||||
.map(|page| gobject.page_position(&page) + 1),
|
||||
false,
|
||||
false,
|
||||
);
|
||||
|
@ -975,11 +975,7 @@ pub fn migrate(tx: &Transaction) -> Result<(), String> {
|
||||
///
|
||||
/// * this feature may be improved and moved outside @TODO
|
||||
fn uri_to_title(uri: &Uri) -> GString {
|
||||
let title = GString::from(match uri.path().split('/').last() {
|
||||
Some(filename) => filename,
|
||||
None => "",
|
||||
});
|
||||
|
||||
let title = GString::from(uri.path().split('/').last().unwrap_or_default());
|
||||
if title.is_empty() {
|
||||
match uri.host() {
|
||||
Some(host) => gformat!("{host}"),
|
||||
|
Loading…
x
Reference in New Issue
Block a user