|
@@ -108,6 +108,10 @@ namespace TEAMModelOS.Controllers
|
|
|
htex.slides = null;
|
|
|
Dictionary<string, Store> dict = new Dictionary<string, Store>();
|
|
|
foreach (var key in htex.stores.Keys) {
|
|
|
+ if (key.EndsWith(".wdp")||key.EndsWith(".xlsx")) {
|
|
|
+ htex.stores.Remove(key);
|
|
|
+ continue;
|
|
|
+ }
|
|
|
var store = htex.stores[key];
|
|
|
Store str = new Store() { path=key,contentType= store.contentType ,isLazy=store.isLazy};
|
|
|
if (!store.isLazy && store.contentType != null && ContentTypeDict.extdict.TryGetValue(store.contentType, out string ext) && store.url.Contains(";base64,"))
|