You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// If local plugins folder was not resoled, fallback to the hack.
26
-
if(!localPath){
27
-
localPath=awaitresolveLocalPluginPath(
21
+
constorigin=pluginResolverContext.getOriginId();
22
+
// The original implementation must not run when there is a hash in the path. Otherwise, it can resolve an undesired directory.
23
+
// Consider app under c:\Users\username\Desktop\# here is my app\
24
+
// Then the flawed logic will incorrectly find c:\Users\username\Desktop location after stripping the rest of the path after the hash.
25
+
// The implementation which provides a workaround for the hash in the path assumes that the original Theia logic is correct, when no hash present in the URI path.
0 commit comments