Skip to content

Commit cd890d1

Browse files
committed
Add warning about possibly unresolvable 3PID invites
1 parent 321ba1e commit cd890d1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/java/io/kamax/mxisd/invitation/InvitationManager.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -512,6 +512,9 @@ public void run() {
512512
publishMapping(reply, lookup.getMxid().getId());
513513
} else {
514514
log.info("No mapping for pending invite {}", getIdForLog(reply));
515+
if (lookupMgr.getLocalProviders().isEmpty()) {
516+
log.warn("No Identity store has been configured, this invite may never resolve");
517+
}
515518
}
516519
} catch (Throwable t) {
517520
log.error("Unable to process invite", t);

0 commit comments

Comments
 (0)