Add privacy history settings

This commit is contained in:
2026-05-08 03:19:43 -04:00
parent 4bdbf5e0c5
commit 6ba7fd611c
11 changed files with 364 additions and 7 deletions
+4 -1
View File
@@ -8,7 +8,10 @@ use super::BrowserCore;
impl BrowserCore {
pub(super) fn record_history_entry(&mut self, tab: &BrowserTab) {
if !records_history(tab.url()) || !self.profile_records_history(tab.profile_id()) {
if !self.history_recording_policy.records_history()
|| !records_history(tab.url())
|| !self.profile_records_history(tab.profile_id())
{
return;
}