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

Commit 0c000a5f authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "MMS: Fix issue that backup MMS from operators failed."

parents 62794b19 edebdc96
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -949,13 +949,16 @@ public class PduComposer {
                    name = part.getContentLocation();

                    if (null == name) {
                        /* at lease one of name, filename, Content-location
                         * should be available.
                         */
                        name = part.getContentId();

                        if (null == name) {
                            // At lease one of name, filename, Content-location, Content id
                            // should be available.
                            return PDU_COMPOSE_CONTENT_ERROR;
                        }
                    }
                }
            }
            appendOctet(PduPart.P_DEP_NAME);
            appendTextString(name);