diff options
Diffstat (limited to 'app/voice/ConfigDialog.qml')
-rw-r--r-- | app/voice/ConfigDialog.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/voice/ConfigDialog.qml b/app/voice/ConfigDialog.qml index 9767804..6ab7dea 100644 --- a/app/voice/ConfigDialog.qml +++ b/app/voice/ConfigDialog.qml @@ -219,7 +219,7 @@ Dialog { * FIXME: Generated URL is currently Alexa-specific, work around for * now by checking agent name and only displaying for Alexa. */ - data: root.thisAgentLoginUrl + '?cbl-code=' + root.thisAgentLoginCode + data: "%1?cbl-code=%2".arg(root.thisAgentLoginUrl).arg(root.thisAgentLoginCode) visible: root.thisAgentName === "Alexa" && root.thisAgentAuthState !== "REFRESHED" && root.tokenValid background: 'white' margin: 16 |