Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion app/src/main/java/org/ocs/android/sections/OCSSims.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

import java.util.ArrayList;

import android.text.TextUtils;

public class OCSSims implements OCSSectionInterface {
final private String sectionTag = "SIM";
Expand All @@ -47,7 +48,7 @@ public OCSSims(Context ctx) {
device_id = mng.getDeviceId();
simcountry = mng.getSimCountryIso();
simoperator = mng.getSimOperator();
simopname = mng.getSimOperatorName();
simopname = TextUtils.htmlEncode(mng.getSimOperatorName().toString());
simserial = mng.getSimSerialNumber();
phonenumber = mng.getLine1Number();
ocslog.debug("device_id : " + device_id);
Expand Down