How do solve it? m=1  issue In Blogger?

When we post the blog from Blogger, if we do it from the laptop, our URL is ?m=1 and it doesn't show up. But if we use the mobile version or mobile then this problem is seen. If it is not very important to solve it, there is a problem in Blogger. Google search console does not want to charge it, so how to solve it easily, use this code below.

Copy And Past It into the blogger theam 
HTML Edit Section

And Past It Below
</script> 
Blogger issue ?m=1





code below

<script type='text/javascript'>

//<![CDATA[

var uri = window.location.toString();

if (uri.indexOf("%3D","%3D") > 0) {

var clean_uri = uri.substring(0, uri.indexOf("%3D"));

window.history.replaceState({}, document.title, clean_uri);

}

var uri = window.location.toString();

if (uri.indexOf("%3D%3D","%3D%3D") > 0) {

var clean_uri = uri.substring(0, uri.indexOf("%3D%3D"));

window.history.replaceState({}, document.title, clean_uri);

}

var uri = window.location.toString();

if (uri.indexOf("&m=1","&m=1") > 0) {

var clean_uri = uri.substring(0, uri.indexOf("&m=1"));

window.history.replaceState({}, document.title, clean_uri);

}

var uri = window.location.toString();

if (uri.indexOf("?m=1","?m=1") > 0) {

var clean_uri = uri.substring(0, uri.indexOf("?m=1"));

window.history.replaceState({}, document.title, clean_uri);

}

//]]>

</script>



And Make save And roblem Solved.