Software /
code /
prosody
Comparison
util/datamanager.lua @ 13567:515ac7e8ae6d
util.datamanager: fix duplicated word in log message
author | Jonas Schäfer <jonas@wielicki.name> |
---|---|
date | Sat, 16 Nov 2024 09:20:29 +0100 |
parent | 13370:971fd4cb09d4 |
comparison
equal
deleted
inserted
replaced
13566:2fb4ce131131 | 13567:515ac7e8ae6d |
---|---|
507 return items; | 507 return items; |
508 end | 508 end |
509 | 509 |
510 local function list_open(username, host, datastore) | 510 local function list_open(username, host, datastore) |
511 if not index_magic then | 511 if not index_magic then |
512 log("debug", "Falling back from lazy loading to to loading full list for %s storage for user: %s@%s", datastore, username or "nil", host or "nil"); | 512 log("debug", "Falling back from lazy loading to loading full list for %s storage for user: %s@%s", datastore, username or "nil", host or "nil"); |
513 return list_load(username, host, datastore); | 513 return list_load(username, host, datastore); |
514 end | 514 end |
515 local filename = getpath(username, host, datastore, "list"); | 515 local filename = getpath(username, host, datastore, "list"); |
516 local file, err, errno = io_open(filename); | 516 local file, err, errno = io_open(filename); |
517 if not file then | 517 if not file then |