Hi,

I'm using uqmi (uqmi - 2015-09-17-8a97586e9445a60e355dea13aa87885ab3dcb277) from openwrt trunk

I'm connecting to the reliance 4g network in india and I'm not able to read the plmn_description field once its connected as its weirdly encoded

 uqmi -d /dev/cdc-wdm2 --get-serving-system 
{
    "registration": "registered",
    "plmn_mcc": 405,
    "plmn_mnc": 15,
    "plmn_description": "�2;\u001dv�� �\u0011",
    "roaming": false
}

but when I do a network scan it shows up correctly

uqmi -d /dev/cdc-wdm2 --network-scan
{
    "network_info": [
        {
            "mcc": 405,
            "mnc": 15,
            "description": "Reliance 4G",
            "status": [
                "current_serving",
                "home",
                "not_forbidden",
                "preferred"
            ]
        },

......

I have only seen this happening with Reliance 4G and Jio networks(in India)

Kindly let me know if there is any way to resolve this.