Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d79f19c5 authored by Sarah Chin's avatar Sarah Chin
Browse files

Check for null when converting nullables

Test: manually verify setupDataCall request and response
Bug: 212328322
Change-Id: I3fe8dcca3900bf7a44bdb918eca9a6a7959653ed
parent c11c6a02
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -3633,7 +3633,8 @@ public class RILUtils {
                .setPduSessionId(result.pduSessionId)
                .setDefaultQos(convertHalQos(result.defaultQos))
                .setQosBearerSessions(qosSessions)
                .setSliceInfo(convertHalSliceInfo(result.sliceInfo))
                .setSliceInfo(result.sliceInfo == null ? null
                        : convertHalSliceInfo(result.sliceInfo))
                .setTrafficDescriptors(trafficDescriptors)
                .build();
    }