mirror of
https://github.com/friendica/friendica
synced 2025-04-22 22:30:11 +00:00
Fixup incrementQueue
This commit is contained in:
parent
6d2ae6a9e3
commit
c21e6ab952
2 changed files with 20 additions and 5 deletions
|
@ -86,19 +86,19 @@ class DeliveryData
|
|||
|
||||
switch ($protocol) {
|
||||
case self::ACTIVITYPUB:
|
||||
$increments[] = ["`activitypub` = `activitypub` + 1"];
|
||||
$increments[] = "`activitypub` = `activitypub` + 1";
|
||||
break;
|
||||
case self::DFRN:
|
||||
$increments[] = ["`dfrn` = `dfrn` + 1"];
|
||||
$increments[] = "`dfrn` = `dfrn` + 1";
|
||||
break;
|
||||
case self::LEGACY_DFRN:
|
||||
$increments[] = ["`legacy_dfrn` = `legacy_dfrn` + 1"];
|
||||
$increments[] = "`legacy_dfrn` = `legacy_dfrn` + 1";
|
||||
break;
|
||||
case self::DIASPORA:
|
||||
$increments[] = ["`diaspora` = `diaspora` + 1"];
|
||||
$increments[] = "`diaspora` = `diaspora` + 1";
|
||||
break;
|
||||
case self::OSTATUS:
|
||||
$increments[] = ["`ostatus` = `ostatus` + 1"];
|
||||
$increments[] = "`ostatus` = `ostatus` + 1";
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue