style(main): indentation

This commit is contained in:
BerkieBb
2022-02-18 10:16:08 +01:00
committed by GitHub
parent c615159c28
commit 4cca898395
+8 -9
View File
@@ -16,13 +16,12 @@ end)
CreateThread(function()
local result = MySQL.Sync.fetchAll('SELECT * FROM permissions', {})
if result[1] then
for k, v in pairs(result) do
QBCore.Config.Server.PermissionList[v.license] = {
license = v.license,
permission = v.permission,
optin = true,
}
end
if not result[1] then return end
for k, v in pairs(result) do
QBCore.Config.Server.PermissionList[v.license] = {
license = v.license,
permission = v.permission,
optin = true,
}
end
end)
end)