//System.out.println("Test: "+snapshot.getValue());
String str = (String) snapshot.getValue();
List<String> followersList = Arrays.asList(str.split(","));
Firebase users = new Firebase("https://signal-app.firebaseio.com/users");
for(String user:followersList){
users.child(user).child("inbox").child(messageKey).setValue(message);
}
}