diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-18 20:26:11 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-18 20:26:11 +0200 |
| commit | a716f0804fd10a37ccc7d87c58ffebeb4f261d10 (patch) | |
| tree | 970542ca70d352aa4857a70356c388fd7a8b32b6 /src/browsertab.cpp | |
| parent | 75bbab5fcc0260ac765b216b8b3d989f88dac159 (diff) | |
| download | kristall-a716f0804fd10a37ccc7d87c58ffebeb4f261d10.tar.gz | |
Rescopes version 0.3, adds roadmap plans for 0.4.
Diffstat (limited to 'src/browsertab.cpp')
| -rw-r--r-- | src/browsertab.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/browsertab.cpp b/src/browsertab.cpp index a69c33c..0733f53 100644 --- a/src/browsertab.cpp +++ b/src/browsertab.cpp @@ -399,7 +399,6 @@ void BrowserTab::on_redirected(const QUrl &uri, bool is_permanent) { Q_UNUSED(is_permanent); - // TODO: Make this a setting if (redirection_count >= global_options.max_redirections) { setErrorMessage(QString("Too many consecutive redirections. The last redirection would have redirected you to:\r\n%1").arg(uri.toString(QUrl::FullyEncoded))); @@ -410,7 +409,6 @@ void BrowserTab::on_redirected(const QUrl &uri, bool is_permanent) bool is_cross_protocol = (this->current_location.scheme() != uri.scheme()); bool is_cross_host = (this->current_location.host() != uri.host()); - QString question; if(global_options.redirection_policy == GenericSettings::WarnAlways) { |
