11 lines
287 B
Dart
11 lines
287 B
Dart
import 'package:moxxyv2/xmpp/connection.dart';
|
|
import 'package:moxxyv2/xmpp/stanza.dart';
|
|
|
|
bool handleUnhandledStanza(XmppConnection conn, Stanza stanza) {
|
|
if (stanza.type != 'error') {
|
|
conn.sendStanza(stanza.errorReply('cancel', 'feature-not-implemented'));
|
|
}
|
|
|
|
return true;
|
|
}
|