Recognize really old FutureSplash era tags as Flash

This commit is contained in:
David Wendt 2019-08-25 19:43:28 -04:00
parent 9ec4892ae7
commit 61171037cd
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ export default class RuffleEmbed extends RufflePlayer {
} }
static is_interdictable(elem) { static is_interdictable(elem) {
return elem.type === "application/x-shockwave-flash"; return elem.type === "application/x-shockwave-flash" || elem.type === "application/futuresplash";
} }
static from_native_embed_element(elem) { static from_native_embed_element(elem) {

View File

@ -17,7 +17,7 @@ export default class RuffleObject extends RufflePlayer {
} }
static is_interdictable(elem) { static is_interdictable(elem) {
return elem.type === "application/x-shockwave-flash"; return elem.type === "application/x-shockwave-flash" || elem.type === "application/futuresplash";
} }
static params_of(elem) { static params_of(elem) {