Sync to upstream

This commit is contained in:
molan-git 2020-04-27 17:26:05 +02:00 committed by GitHub
parent a87c27e58e
commit 977f8b2fc0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -29,6 +29,7 @@ Page {
property bool muting : false;
property bool domain_blocking : false;
WorkerScript {
id: worker
source: "../lib/Worker.js"
@ -264,7 +265,6 @@ Page {
console.log(link)
console.log(JSON.stringify(test))
console.log(JSON.stringify(test.length))
<<<<<<< HEAD
if (test.length === 5 && (test[3] === "tags" || test[3] === "tag") ) {
pageStack.pop(pageStack.find(function(page) {
@ -285,28 +285,6 @@ Page {
}
}
=======
if (test.length === 5 && (test[3] === "tags" || test[3] === "tag") ) {
pageStack.pop(pageStack.find(function(page) {
var check = page.isFirstPage === true;
if (check)
page.onLinkActivated(link)
return check;
}));
send(link)
} else if (test.length === 4 && test[3][0] === "@" ) {
tlSearch.search = decodeURIComponent("@"+test[3].substring(1)+"@"+test[2])
slideshow.positionViewAtIndex(4, ListView.SnapToItem)
navigation.navigateTo('search')
} else {
Qt.openUrlExternally(link);
}
}
>>>>>>> 33d54bdda818c7a41c3a8cc8c5f09cb682584d8e
}
Column {
spacing: Theme.paddingMedium