Custom icon naming problem

Hi,
I’ crated an cusom icon to be used in ma openhab project.
the problem is the icon does not show or may show depending on the name given.

I’ read throug the documents but did not find any information of naming restrictictions.

Details:

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="48" height="48" >
    <title>network_wlanRouter</title>
    <g stroke="#000" fill="#686868" stroke-width=".5">
        <rect x="0" y="20" width="24" height="2"  />
        <rect x="11" y="17" width="2" height="4"  />
        <rect x="10" y="19.5" rx="1" ry="1" width="4" height="3"/>
    </g>
    <g stroke="black" stroke-width=".5"  fill="white" >
        <rect x="5" y="12" rx="2" ry="2" width="14" height="5"/>
        <path  d="M12 12 v-2.5" stroke-width="1"/>
        <path  d="M8 4 q4 -2 8 0" stroke-width="1"/>
        <path  d="M9 6 q3 -1.5 6 0" stroke-width="1"/>
        <path  d="M10 8 q2 -1 4 0" stroke-width="1"/>
    </g>
</svg>```

this code I' copied to the openhab location /etc/openhab/icons/classic.
there are 2 identical copies;
- network_wlanRouter.svg
- network_icon.svg

using the name "network_icon" showing correctly
![working|690x306](upload://bzsWmRmNJFdn8RWP4bpCCYRzSZz.png)
![grafik|690x343](upload://ax2b8SxOX4Rn4YqaS4mb5C8oK3M.png)

using the intendet name "network_wlanRouter" does not show the icon.
![notworking|690x317](upload://6aA9eDlezvRs9gyi1STWyPchvFq.png)

I believe that the icon names are restricted to lower case characters ( Icon filenames may include lowercase letters, numbers, hyphens (-) and underscores (_)).
See: https://www.openhab.org/docs/configuration/items.html#icons

thanks that worked.

I’ did read that sentence but overlooked the lower case only detail.