From 607d9df8a9e204c5042ae649a4420edc619262a2 Mon Sep 17 00:00:00 2001 From: Xavier Michelon Date: Mon, 21 Oct 2024 08:40:29 +0200 Subject: [PATCH] fix(BRIDGE-235): fix compilation of Bridge GUI Tester on Windows. --- .../frontend/bridge-gui/bridge-gui-tester/GRPCService.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/frontend/bridge-gui/bridge-gui-tester/GRPCService.cpp b/internal/frontend/bridge-gui/bridge-gui-tester/GRPCService.cpp index 22d02708..917129a1 100644 --- a/internal/frontend/bridge-gui/bridge-gui-tester/GRPCService.cpp +++ b/internal/frontend/bridge-gui/bridge-gui-tester/GRPCService.cpp @@ -364,9 +364,9 @@ grpc::Status GRPCService::RequestKnowledgeBaseSuggestions(ServerContext*, String QList suggestions; for (qsizetype i = 1; i <= 3; ++i) { - suggestions.push_back( { - .title = QString("Suggested link %1").arg(i), + suggestions.push_back({ .url = QString("https://proton.me/support/bridge#%1").arg(i), + .title = QString("Suggested link %1").arg(i), }); } qtProxy_.sendDelayedEvent(newKnowledgeBaseSuggestionsEvent(app().mainWindow().knowledgeBaseTab().getSuggestions()));