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()
|
Persona p = view.getSelectedPersona()
|
||||||
if (p == null)
|
if (p == null)
|
||||||
return
|
return
|
||||||
String groupId = p.getHumanReadableName() + "-browse"
|
String groupId = UUID.randomUUID().toString()
|
||||||
def params = [:]
|
def params = [:]
|
||||||
params['host'] = p
|
params['host'] = p
|
||||||
params['core'] = model.core
|
params['core'] = model.core
|
||||||
|
|
|
@ -104,7 +104,7 @@ class MainFrameController {
|
||||||
if (search.length() > 128) {
|
if (search.length() > 128) {
|
||||||
try {
|
try {
|
||||||
Persona p = new Persona(new ByteArrayInputStream(Base64.decode(search)))
|
Persona p = new Persona(new ByteArrayInputStream(Base64.decode(search)))
|
||||||
String groupId = p.getHumanReadableName() + "-browse"
|
String groupId = UUID.randomUUID().toString()
|
||||||
def params = [:]
|
def params = [:]
|
||||||
params['host'] = p
|
params['host'] = p
|
||||||
params['core'] = model.core
|
params['core'] = model.core
|
||||||
|
|
Loading…
Reference in New Issue