mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_storage_sql: Adjust indentation to align with surrounding code
This commit is contained in:
parent
02469e4e8e
commit
935f28230a
1 changed files with 3 additions and 3 deletions
|
@ -310,9 +310,9 @@ function archive_store:append(username, key, value, when, with)
|
|||
item_count_cache_miss();
|
||||
local ok, ret = engine:transaction(function()
|
||||
local count_sql = [[
|
||||
SELECT COUNT(*) FROM "prosodyarchive"
|
||||
WHERE "host"=? AND "user"=? AND "store"=?;
|
||||
]];
|
||||
SELECT COUNT(*) FROM "prosodyarchive"
|
||||
WHERE "host"=? AND "user"=? AND "store"=?;
|
||||
]];
|
||||
local result = engine:select(count_sql, host, user, store);
|
||||
if result then
|
||||
for row in result do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue