Skip to content

Commit

Permalink
Fixed Auth token issues (#271)
Browse files Browse the repository at this point in the history
Co-authored-by: dutchie032 <dutchie032>
  • Loading branch information
dutchie032 authored Oct 26, 2024
1 parent 64d5dc3 commit 4a93dc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lua/DCS-gRPC/grpc-mission.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion lua/Hooks/DCS-gRPC.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 4a93dc5

Please sign in to comment.