OStatus: By using Qvitter, users can delete items. We can't handle that by now, so we ignore it.
This commit is contained in:
parent
28f0e9a2de
commit
06d446595e
1 changed files with 7 additions and 0 deletions
|
@ -200,6 +200,13 @@ function ostatus_import($xml,$importer,&$contact, &$hub) {
|
|||
$item["object"] = $xml;
|
||||
$item["verb"] = $xpath->query('activity:verb/text()', $entry)->item(0)->nodeValue;
|
||||
|
||||
// To-Do:
|
||||
// Delete a message
|
||||
if ($item["verb"] == "qvitter-delete-notice") {
|
||||
// ignore "Delete" messages (by now)
|
||||
continue;
|
||||
}
|
||||
|
||||
if ($item["verb"] == ACTIVITY_JOIN) {
|
||||
// ignore "Join" messages
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue