| author | Georg Fritzsche <georg.fritzsche@googlemail.com> |
| Tue, 08 Dec 2015 19:52:45 -0500 | |
| changeset 276106 | 64d71638794cec07d8b9cc5c256448047d79459e |
| parent 276105 | 560d36a955520d767e2503ecc52e3fc91da98d16 |
| child 276107 | e948e192e8f711c508f4a34aafe3e55ecb08d83d |
| push id | 29784 |
| push user | cbook@mozilla.com |
| push date | Fri, 11 Dec 2015 10:38:27 +0000 |
| treeherder | mozilla-central@754b4805a65c [default view] [failures only] |
| perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
| reviewers | dtownsend |
| bugs | 1231055 |
| milestone | 45.0a1 |
| first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
| last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
| toolkit/mozapps/extensions/internal/PluginProvider.jsm | file | annotate | diff | comparison | revisions |
--- a/toolkit/mozapps/extensions/internal/PluginProvider.jsm +++ b/toolkit/mozapps/extensions/internal/PluginProvider.jsm @@ -444,17 +444,17 @@ PluginWrapper.prototype = { let libs = []; for (let tag of pluginFor(this).tags) libs.push(tag.filename); return libs; }, get pluginFullpath() { let paths = []; - for (let tag of aTags) + for (let tag of pluginFor(this).tags) paths.push(tag.fullpath); return paths; }, get pluginMimeTypes() { let types = []; for (let tag of pluginFor(this).tags) { let mimeTypes = tag.getMimeTypes({});