From 4a93dc54f72b11fa07990a6d6924a275b6962e17 Mon Sep 17 00:00:00 2001 From: Dutchie <54616262+dutchie032@users.noreply.github.com> Date: Sat, 26 Oct 2024 14:24:33 +0200 Subject: [PATCH] Fixed Auth token issues (#271) Co-authored-by: dutchie032 --- 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