From 4fa103fadbe7b38ea5542fb503e96ddc9cf7e8fd Mon Sep 17 00:00:00 2001 From: dutchie032 Date: Tue, 8 Oct 2024 23:06:10 +0200 Subject: [PATCH] Fixed Auth token issues --- lua/DCS-gRPC/grpc-mission.lua | 2 +- lua/Hooks/DCS-gRPC.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/DCS-gRPC/grpc-mission.lua b/lua/DCS-gRPC/grpc-mission.lua index e1d90a5..0f49024 100644 --- a/lua/DCS-gRPC/grpc-mission.lua +++ b/lua/DCS-gRPC/grpc-mission.lua @@ -3,7 +3,7 @@ if not GRPC then -- scaffold nested tables to allow direct assignment in config file tts = { provider = { gcloud = {}, aws = {}, azure = {}, win = {} } }, srs = {}, - auth = {} + auth = { tokens = {} } } end diff --git a/lua/Hooks/DCS-gRPC.lua b/lua/Hooks/DCS-gRPC.lua index 09f659b..6e714ab 100644 --- a/lua/Hooks/DCS-gRPC.lua +++ b/lua/Hooks/DCS-gRPC.lua @@ -9,7 +9,7 @@ local function init() -- scaffold nested tables to allow direct assignment in config file tts = { provider = { gcloud = {}, aws = {}, azure = {}, win = {} } }, srs = {}, - auth = {} + auth = { tokens = {} } } end