import_export: use default ts_lang if user one is unset

This commit is contained in:
Andrew Dolgov 2019-04-11 13:38:47 +03:00
parent dee1614d0a
commit c7ad4ad2d4
1 changed files with 3 additions and 0 deletions

View File

@ -404,6 +404,9 @@ class Import_Export extends Plugin implements IHandler {
$ts_lang = get_pref('DEFAULT_SEARCH_LANGUAGE', $owner_uid);
// TODO: maybe use per-feed setting if available?
if (!$ts_lang)
$ts_lang = 'simple';
$sth = $this->pdo->prepare("UPDATE ttrss_entries
SET tsvector_combined = to_tsvector(:ts_lang, :ts_content)
WHERE id = :id");