|
|
@@ -341,7 +341,7 @@ public class JitsiMeetConferenceOptions implements Parcelable {
|
|
341
|
341
|
dest.writeString(token);
|
|
342
|
342
|
dest.writeBundle(colorScheme);
|
|
343
|
343
|
dest.writeBundle(featureFlags);
|
|
344
|
|
- dest.writeBundle(userInfo.asBundle());
|
|
|
344
|
+ dest.writeBundle(userInfo != null ? userInfo.asBundle() : new Bundle());
|
|
345
|
345
|
dest.writeByte((byte) (audioMuted == null ? 0 : audioMuted ? 1 : 2));
|
|
346
|
346
|
dest.writeByte((byte) (audioOnly == null ? 0 : audioOnly ? 1 : 2));
|
|
347
|
347
|
dest.writeByte((byte) (videoMuted == null ? 0 : videoMuted ? 1 : 2));
|