Bug with rootPath [HTML5, Lime 7.6.3]

When param { rootPath : “some/path/” } used in
lime.embed("name", "div", 0, 0, {rootPath : "/some_path/"})
some paths become invalid. like this
/some_path///some_path/preloader/preloader.jpg
as i understand prefix 'rootPath + ’ in 76 line in
lime\7,6,3\templates\haxe\ManifestResources.hx
is a reason of a bug.
when i remove it :
::else::Assets.libraryPaths["::library::"] = /*rootPath + */"::resourceName::";
all works right.

Does this fix it?

Yes, this fix it!
Thx!