mirror of https://github.com/zlatinb/muwire
allow multiple browses of same host from some locations
parent
01d3bac416
commit
e4ef0035fd
|
@ -153,7 +153,7 @@ class ChatRoomController {
|
|||
Persona p = view.getSelectedPersona()
|
||||
if (p == null)
|
||||
return
|
||||
String groupId = p.getHumanReadableName() + "-browse"
|
||||
String groupId = UUID.randomUUID().toString()
|
||||
def params = [:]
|
||||
params['host'] = p
|
||||
params['core'] = model.core
|
||||
|
|
|
@ -104,7 +104,7 @@ class MainFrameController {
|
|||
if (search.length() > 128) {
|
||||
try {
|
||||
Persona p = new Persona(new ByteArrayInputStream(Base64.decode(search)))
|
||||
String groupId = p.getHumanReadableName() + "-browse"
|
||||
String groupId = UUID.randomUUID().toString()
|
||||
def params = [:]
|
||||
params['host'] = p
|
||||
params['core'] = model.core
|
||||
|
|
Loading…
Reference in New Issue