From d5ef5249cc5306f6d0d3966d1352b5c0b3b18db7 Mon Sep 17 00:00:00 2001 From: Armin <armin.felder@osalliance.com> Date: Tue, 26 Dec 2017 22:58:16 +0100 Subject: [PATCH] fixed google key --- models/GooglePushModel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/GooglePushModel.cpp b/models/GooglePushModel.cpp index 93b5319..d18f41f 100644 --- a/models/GooglePushModel.cpp +++ b/models/GooglePushModel.cpp @@ -36,7 +36,7 @@ std::string GooglePushModel::mApiKey; void GooglePushModel::loadApiKey() { - std::ifstream ifs("credentials/google/serverKey.txt"); + std::ifstream ifs("/certs/google/serverKey.txt"); std::string content((std::istreambuf_iterator<char>(ifs)), (std::istreambuf_iterator<char>())); GooglePushModel::mApiKey = content; -- GitLab