Skip to content

Commit

Permalink
Ensure uniqueness of dbus identity names
Browse files Browse the repository at this point in the history
  • Loading branch information
AsamK committed Aug 22, 2023
1 parent 4a37227 commit 884fa27
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/asamk/signal/dbus/DbusSignalImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -1100,7 +1100,8 @@ public DbusSignalIdentityImpl(final org.asamk.signal.manager.api.Identity identi

@Override
public String getObjectPath() {
return getIdentityObjectPath(objectPath, identity.recipient().getLegacyIdentifier());
return getIdentityObjectPath(objectPath,
identity.recipient().getLegacyIdentifier() + "_" + identity.recipient().getIdentifier());
}

@Override
Expand Down

0 comments on commit 884fa27

Please sign in to comment.