3 support issues
- All
- Questions
- Suggestions
- Problems
Dino
May 23, 2022
mpeg dash and hls streaming
Hi.
When mpeg dash and hls streaming will be available ?
Thanks
- Report illegal content
Jan Šabat
Dec 9, 2021
Can't add url into allowed urls
Hi I can't add an url which includes any path. Could you pls change the validation?
Anyway, great job! ;)
Thanks
- Report illegal content
Dariusz Gardyński
Jan 27, 2020
Vuex and oipf objects
Hi,
great job! But I found issue:
getOwnerApplication have to use
Object.defineProperty(this, "_application", {
writable: true,
configurable: true,
enumerable: false,
value: ...
});
becouse Vuex falls into an endless loop in:
function _traverse (val, seen) {
var i, keys;
var isA = Array.isArray(val);
if ((!isA && !isObject(val)) || Object.isFrozen(val) || val instanceof VNode) {
return
}
if (val.__ob__) {
var depId = val.__ob__.dep.id;
if (seen.has(depId)) {
return
}
seen.add(depId);
}
if (isA) {
i = val.length;
while (i--) { _traverse(val[i], seen); }
} else {
keys = Object.keys(val); // <- return _application prop
i = keys.length;
while (i--) { _traverse(val[keys[i]], seen); } // <- endless loop
}
}
Best regards
- Report illegal content