From 655de66423be422b9a604d503ee94af908f251f1 Mon Sep 17 00:00:00 2001 From: TomasKulhanek Date: Wed, 12 Sep 2018 14:57:01 +0100 Subject: [PATCH] UPDATE #64: enable apacheurl generator in all cases --- .../WP6Service2/Services/Files/AFileProvider.cs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/wp6-virtualfolder/src/WP6Service2/WP6Service2/Services/Files/AFileProvider.cs b/wp6-virtualfolder/src/WP6Service2/WP6Service2/Services/Files/AFileProvider.cs index 207a569..96c7653 100644 --- a/wp6-virtualfolder/src/WP6Service2/WP6Service2/Services/Files/AFileProvider.cs +++ b/wp6-virtualfolder/src/WP6Service2/WP6Service2/Services/Files/AFileProvider.cs @@ -34,9 +34,12 @@ protected AFileProvider(ProviderItem provider, ISettingsStorage settingsStorage, Db = connection; FILESYSTEMFOLDER = Path.Combine(_rootdir, provider.loggeduser, provider.alias); - //handle west-life log on - @west-life.eu and other log-on - if (username.EndsWith("@west-life.eu")) Ug = new ApacheUrlGenerator(provider); - else Ug = new VreUrlGenerator(provider); + //handle west-life log on - @west-life.eu and other log-on + //commented - only apacheurlgenerator will be available + //if (username.EndsWith("@west-life.eu")) + Ug = new ApacheUrlGenerator(provider); + //else +// Ug = new VreUrlGenerator(provider); WEBDAVURL = Ug.GetRootWebDavUrl(); //PUBLICWEBDAVURL = Ug.GetRootPublicWebDavUrl(); }