New worker to fix empty icid

This commit is contained in:
Michael 2018-06-29 06:24:18 +00:00
parent 6b31e72905
commit 4807797eaf
1 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,21 @@
<?php
/**
* @file src/Worker/SetItemContentID.php
* @brief This script sets the "icid" value in the item table if it couldn't set before.
*
* This script is started from mod/item.php to fix timing problems.
*/
namespace Friendica\Worker;
use Friendica\Model\Item;
class SetItemContentID {
public static function execute($uri = '') {
if (empty($uri)) {
return;
}
Item::setICIDforURI($uri);
}
}