mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-02 17:45:28 +00:00
rename uri mod to search
This commit is contained in:
parent
254bf30ca0
commit
8f55c2c362
2 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
mod uri;
|
mod search;
|
||||||
|
|
||||||
// Global dependencies
|
// Global dependencies
|
||||||
use gtk::glib::{Uri, UriFlags};
|
use gtk::glib::{Uri, UriFlags};
|
||||||
|
|
@ -23,7 +23,7 @@ impl Request {
|
||||||
// Search request if the request could not be parsed as the valid [URI](https://docs.gtk.org/glib/struct.Uri.html)
|
// Search request if the request could not be parsed as the valid [URI](https://docs.gtk.org/glib/struct.Uri.html)
|
||||||
// * @TODO implement DNS resolver lookup before assign this option
|
// * @TODO implement DNS resolver lookup before assign this option
|
||||||
Err(_) => Self::Gemini {
|
Err(_) => Self::Gemini {
|
||||||
uri: uri::tgls(request),
|
uri: search::tgls(request),
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue