Closed
Bug 950445
Opened 12 years ago
Closed 11 years ago
ACE Stream plugin won't start in Firefox 28
Categories
(Core Graveyard :: Plug-ins, defect, P4)
Tracking
(firefox27 unaffected, firefox28+ verified, firefox29+ verified)
VERIFIED
WORKSFORME
| Tracking | Status | |
|---|---|---|
| firefox27 | --- | unaffected |
| firefox28 | + | verified |
| firefox29 | + | verified |
People
(Reporter: mackeev, Unassigned)
References
Details
User Agent: Mozilla/5.0 (Windows NT 6.1; rv:28.0) Gecko/20100101 Firefox/28.0 (Beta/Release)
Build ID: 20131214004001
Steps to reproduce:
Tried to start an ace stream on http://torrent-tv.ru
Actual results:
Got a message "ACE Stream P2P Multimedia Plugin is not installed" and suggestion to install it.
Expected results:
Plugin IS installed and worked just fine on all previous versions of Aurora.
Streaming should have started!
Comment 1•11 years ago
|
||
Mozilla/5.0 (Windows NT 6.1; rv:28.0) Gecko/20100101 Firefox/28.0
Reproduced with Aurora 28.0a2 (Build ID: 20131217004003): after I install Ace Stream P2P Multimedia Plug-in 2.1.9.0, the message "ACE Stream P2P Multimedia Plugin is not installed on your computer" is displayed and streaming doesn't start. Works with Chrome and Opera.
Status: UNCONFIRMED → NEW
Component: Untriaged → Plug-ins
Ever confirmed: true
Product: Firefox → Core
Comment 2•11 years ago
|
||
Caused somewhat intentionally by bug 757726:
This is the code at http://torrent-tv.ru/js/core.js:
for (var i=0; i < navigator.plugins.length; i++) {
if(navigator.plugins[i].name.match(/Torrent Stream P2P Multimedia Plug-in 2/gim)) {
if(p === false) {
p = 3;
}
}
else if(navigator.plugins[i].name.match(/Torrent Stream P2P Multimedia Plug-in/gim)) {
if(p === false) {
p = 1;
}
}
else if(navigator.plugins[i].name.match(/ACE Stream P2P Multimedia Plug-in/gim)) {
p = 2;
}
else if(navigator.plugins[i].name.match(/ACE Stream Multimedia Plug-in/gim)) {
p = 4;
}
}
The best solution would be for this site to stop enumerating navigator.plugins and instead check navigator.mimeTypes['mimeType'].
Blocks: 757726
Updated•11 years ago
|
Updated•11 years ago
|
Assignee: nobody → other
Component: Plug-ins → Other
Product: Core → Tech Evangelism
Version: 28 Branch → Trunk
Comment 3•11 years ago
|
||
Kohei, please don't move these bugs to TE until/unless we are sure that we aren't going to add the plugin to the in-product blocklist. TE is where bugs go to die and not be tracked.
Assignee: other → nobody
tracking-firefox27:
--- → ?
Component: Other → Plug-ins
Product: Tech Evangelism → Core
Comment 4•11 years ago
|
||
Sorry about that.
Comment 5•11 years ago
|
||
Switching the tracking flag from Firefox27->28 per bug description.
Comment 6•11 years ago
|
||
I tried pinging torrent-tv.ru on Twitter and their website's Contact form.
Do we have a better way to contact them?
Comment 7•11 years ago
|
||
That's a good start, let us know if you hear back from them, tracking to make sure we stay on top of this.
| Reporter | ||
Comment 8•11 years ago
|
||
I reported this problem to them the same day I posted it here. BTW, this affects all sites that provide ace streaming content.
The only reply I got so far was "We'll think about it when FF 28 is released."
Maybe you'll have more luck.
Comment 9•11 years ago
|
||
If we want to whitelist the ACE Stream video plugin, we will need to add the "ACE Stream" plugin name prefix to the `plugins.enumerable_names` pref. I do not think we should include the "Torrent Stream P2P Multimedia Plug-in" name because that is an older version of the same plugin.
That said, whitelisting plugins to fix a torrent website is not a high priority on my to-do list. :)
Priority: -- → P4
Summary: Ace Stream plugin won't start in Aurora 28 → ACE Stream plugin won't start in Firefox 28
| Reporter | ||
Comment 10•11 years ago
|
||
The problem has been fixed.
Comment 11•11 years ago
|
||
WFM too with latest Aurora and Nightly builds from 2014-01-28.
It's also fixed on Aurora from 2013-12-14 (comment 0).
Status: NEW → RESOLVED
Closed: 11 years ago
Resolution: --- → WORKSFORME
| Reporter | ||
Comment 12•11 years ago
|
||
There are some sites out there that are still affected (e.g., http://raketa-tv.com), but it's their loss (they are, so to speak, trailing behind in technology).
Comment 13•11 years ago
|
||
Awesome! Thanks for testing this, Igor and Alexandra. :)
Updated•11 years ago
|
Comment 14•11 years ago
|
||
Marking verified based on above testing.
Updated•3 years ago
|
Product: Core → Core Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•