Add warning about possibly unresolvable 3PID invites

This commit is contained in:
Max Dor
2019-05-14 00:49:07 +02:00
parent 321ba1e325
commit cd890d114a

View File

@@ -512,6 +512,9 @@ public class InvitationManager {
publishMapping(reply, lookup.getMxid().getId());
} else {
log.info("No mapping for pending invite {}", getIdForLog(reply));
if (lookupMgr.getLocalProviders().isEmpty()) {
log.warn("No Identity store has been configured, this invite may never resolve");
}
}
} catch (Throwable t) {
log.error("Unable to process invite", t);