@ -51,6 +51,7 @@ public final class list {
// return variable that accumulates replacements
// return variable that accumulates replacements
final serverObjects prop = new serverObjects ( ) ;
final serverObjects prop = new serverObjects ( ) ;
prop . put ( "list" , "" ) ; // init a empty return (error case)
if ( ( post = = null ) | | ( env = = null ) ) return prop ;
if ( ( post = = null ) | | ( env = = null ) ) return prop ;
if ( ! Protocol . authentifyRequest ( post , env ) ) return prop ;
if ( ! Protocol . authentifyRequest ( post , env ) ) return prop ;
@ -66,7 +67,7 @@ public final class list {
if ( ( sb . isRobinsonMode ( ) ) & & ( ! sb . isInMyCluster ( otherPeerName ) ) ) {
if ( ( sb . isRobinsonMode ( ) ) & & ( ! sb . isInMyCluster ( otherPeerName ) ) ) {
// if we are a robinson cluster, answer only if this client is known by our network definition
// if we are a robinson cluster, answer only if this client is known by our network definition
return null ;
return prop ;
}
}
if ( col . equals ( "black" ) ) {
if ( col . equals ( "black" ) ) {
@ -85,8 +86,6 @@ public final class list {
}
}
prop . put ( "list" , out . toString ( ) ) ;
prop . put ( "list" , out . toString ( ) ) ;
} else {
prop . put ( "list" , "" ) ;
}
}
return prop ;
return prop ;