Skip to content

Commit 6a2248c

Browse files
committed
bridge: remove redundant escape
1 parent db8cc64 commit 6a2248c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bridge/src/Civ5MCP_Bridge.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ local function SaveGameConfiguration()
9191
local insertMetaQuery = string.format([[
9292
INSERT INTO MCP_GameConfiguration(session_id, data)
9393
VALUES('%s', '%s');
94-
]], escapedSessionID:gsub("'", "''"), escapedJson)
94+
]], escapedSessionID, escapedJson)
9595

9696
for _ in g_UserData.Query(insertMetaQuery) do end
9797

0 commit comments

Comments
 (0)