remove scheme from scope, rename build constructors

This commit is contained in:
yggverse 2025-01-23 11:46:43 +02:00
parent 9371f16798
commit 089a91d5a2
25 changed files with 103 additions and 72 deletions

View file

@ -76,14 +76,8 @@ impl Navigation {
.update(self.profile.bookmark.get(&request).is_ok());
self.history.update();
self.reload.update(!request.is_empty());
self.request.update(
self.profile
.identity
.auth
.memory
.match_scope(&request)
.is_some(),
);
self.request
.update(self.profile.identity.match_scope(&request).is_some());
self.home.update();
}