diff options
author | link2xt <link2xt@testrun.org> | 2020-10-04 01:34:29 +0300 |
---|---|---|
committer | link2xt <link2xt@testrun.org> | 2020-10-04 01:34:29 +0300 |
commit | 75cf9aebe025135dca9e0b9a3c7c139c7d4fffb3 (patch) | |
tree | 6943d24f71c813e87f44a6951f854124561328ee | |
parent | cc02ee510740e467568ae3c142d956e375bccac5 (diff) | |
download | kdeltachat-75cf9aebe025135dca9e0b9a3c7c139c7d4fffb3.tar.gz kdeltachat-75cf9aebe025135dca9e0b9a3c7c139c7d4fffb3.zip |
Remove unnecessary semicolon
-rw-r--r-- | qml/AccountsPage.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qml/AccountsPage.qml b/qml/AccountsPage.qml index 8bda7a7..aa9c6f6 100644 --- a/qml/AccountsPage.qml +++ b/qml/AccountsPage.qml @@ -29,7 +29,7 @@ Kirigami.Page { onAccepted: { var url = importAccountDialog.fileUrl.toString() if (url.startsWith("file://")) { - var filename = url.substring(7); + var filename = url.substring(7) console.log("Importing " + filename) var accountId = accountsModel.importAccount (filename) if (accountId == 0) { |