1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-06 11:29:15 +00:00

fix previous

This commit is contained in:
Andrew Dolgov
2015-06-18 12:10:22 +03:00
parent 4dbd303bc7
commit 13167d2a2f

View File

@@ -267,6 +267,11 @@ class Af_Sort_Bayes extends Plugin {
$result = $this->dbh->query("SELECT id FROM {$this->sql_prefix}_references WHERE
document_id = '" . $this->dbh->escape_string($article['guid_hashed']) . "'");
if (db_num_rows($result) != 0) {
_debug("bayes: article already categorized");
return $article;
}
$nbs = new NaiveBayesianStorage($owner_uid);
$nb = new NaiveBayesian($nbs);