X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModel%2FConversation.php;h=cd51a537ed247839bdeebf181e6f9796ac9b5bf0;hb=8cabfdde768cf22dffbd2f1d140ff850824ed19a;hp=e6888ca8f6cc01fa930a220939303bd2ef5adbe7;hpb=efa8dbcfb31b1c0fe873f4b8f6990325eb9942f4;p=friendica.git diff --git a/src/Model/Conversation.php b/src/Model/Conversation.php index e6888ca8f6..cd51a537ed 100644 --- a/src/Model/Conversation.php +++ b/src/Model/Conversation.php @@ -11,6 +11,14 @@ require_once "include/dba.php"; class Conversation { + const PROTOCOL_UNKNOWN = 0; + const PROTOCOL_DFRN = 1; + const PROTOCOL_DIASPORA = 2; + const PROTOCOL_OSTATUS_SALMON = 3; + const PROTOCOL_OSTATUS_FEED = 4; // Deprecated + const PROTOCOL_GS_CONVERSATION = 5; // Deprecated + const PROTOCOL_SPLITTED_CONV = 6; + /** * @brief Store the conversation data * @@ -58,7 +66,7 @@ class Conversation unset($conversation['source']); } if (!dba::update('conversation', $conversation, ['item-uri' => $conversation['item-uri']], $old_conv)) { - logger('Conversation: update for '.$conversation['item-uri'].' from '.$conv['protocol'].' to '.$conversation['protocol'].' failed', LOGGER_DEBUG); + logger('Conversation: update for '.$conversation['item-uri'].' from '.$old_conv['protocol'].' to '.$conversation['protocol'].' failed', LOGGER_DEBUG); } } else { if (!dba::insert('conversation', $conversation, true)) {