Let the user update the sphinx main index even if the message doesnt exist in the folder_message table

Signed-off-by: Janos SUTO <sj@acts.hu>
This commit is contained in:
Janos SUTO 2020-12-21 22:35:09 +01:00
parent fbbdce7f99
commit 5178c3e18b

View File

@ -227,9 +227,7 @@ class ModelFolderFolder extends Model {
public function update_message_folder($id = 0, $folder_id = 0) {
$query = $this->db->query("UPDATE `" . TABLE_FOLDER_MESSAGE . "` SET folder_id=? WHERE id=?", array($folder_id, $id));
if($this->db->countAffected() == 1) {
$query = $this->sphx->query("UPDATE " . SPHINX_MAIN_INDEX . " SET folder=$folder_id WHERE id=$id");
}
$query = $this->sphx->query("UPDATE " . SPHINX_MAIN_INDEX . " SET folder=$folder_id WHERE id=$id");
}