mirror of
https://github.com/AsamK/signal-cli
synced 2025-09-02 20:40:38 +00:00
14 lines
301 B
Java
14 lines
301 B
Java
package org.asamk.signal.manager;
|
|
|
|
import java.util.Base64;
|
|
|
|
public class GroupIdV2 extends GroupId {
|
|
|
|
public static GroupIdV2 fromBase64(String groupId) {
|
|
return new GroupIdV2(Base64.getDecoder().decode(groupId));
|
|
}
|
|
|
|
public GroupIdV2(final byte[] id) {
|
|
super(id);
|
|
}
|
|
}
|