Skip to content

Commit ec7546d

Browse files
committed
fix: incorrect lua concatenation
1 parent c531931 commit ec7546d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Classes/APIContractBuilds.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ function APIContractBuilds:BuildsVersion1Callback(source, response, errMsg)
180180
for _, build in ipairs(parsedResponse) do
181181
-- source and buildId will be used as a caching key
182182
-- to avoid buildId collissions
183-
self.buildList[common.sha1(source.name + "-" + build.buildId)] = buildInfoToCache(build, source)
183+
self.buildList[common.sha1(source.name .. "-" .. build.buildId)] = buildInfoToCache(build, source)
184184
end
185185
end
186186

0 commit comments

Comments
 (0)