fix: return loaded pool count after sync operation

This commit is contained in:
ngn 2024-07-13 14:11:49 +03:00
parent 0ae3ffd929
commit ba992d395d
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-07-13 14:04+0300\n"
"POT-Creation-Date: 2024-07-13 14:11+0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -113,5 +113,5 @@ size_t lm_ctx_sync(lm_ctx_t *ctx, bool do_update, lm_ctx_sync_callback_t callbac
cur = cur->next;
}
return true;
return loaded_count;
}