ResourceResolver resolve method not working as expected (6.1)
I am using AEM 6.1 and am experiencing some weird behaviour with the 'resolve' method of the ResourceResolver.
I have a bunch of mappings that work correctly on the live site, when I use the '.../system/console/jcrresolver' to test my mappings I get the following result:

When I try to use the resolve method from ResourceResolver in code I do get a wrong result:
resourceResolver.resolve("https://acc-company.com/nl/size-guides").getPath();
Results in: '/https://acc-company.com/nl/size-guides', why am I not receiving '/content/www-company-com/nl/size-guides' ?
NOTE: mapping (the reverse of resolving) does work when triggered from code:
resourceResolver.map("/content/www-company-com/nl/size-guides");
Results in: 'https://acc-company.com/nl/size-guides'
Any idea what is causing the resolving to fail?
Thanks in advance
Jeroen