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
In FixPath, there is a line: if (path.StartsWith(appVirtualPath))
This value is pulled from public string ApplicationVirtualPath { get; internal set; } = HttpRuntime.AppDomainAppVirtualPath;
I'm running chauffeur to build up my database and it fails to insert media because HttpRuntime.AppDomainAppVirtualPath is null, since it runs outside IIS. I've noticed elsewhere in this class when appVirtualPath is used, it has a nullability check. It should be added here as well.