Skip to content

Commit

Permalink
refactor(server/logger): backwards compatibility for loki convar (ove…
Browse files Browse the repository at this point in the history
  • Loading branch information
daZepelin authored May 5, 2023
1 parent 89c0668 commit 56536d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imports/logger/server.lua
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ end

if service == 'loki' then
local lokiUser = GetConvar('loki:user', '')
local lokiPassword = GetConvar('loki:password', '')
local lokiPassword = GetConvar('loki:password', GetConvar('loki:key', ''))
local lokiEndpoint = GetConvar('loki:endpoint', '')
local startingPattern = '^http[s]?://'
local headers = {
Expand Down

0 comments on commit 56536d5

Please sign in to comment.