Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bug 785436 - PageThumbsWorker.js url is wrong when creating the worke…
…r in PageThumbs.jsm. r=gavin,a=gavin
  • Loading branch information
glandium committed Aug 25, 2012
1 parent 0801682 commit 7088e20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion browser/components/thumbnails/PageThumbs.jsm
Expand Up @@ -471,7 +471,7 @@ let PageThumbsWorker = {
*/
get _worker() {
delete this._worker;
this._worker = new ChromeWorker("resource://gre/modules/PageThumbsWorker.js");
this._worker = new ChromeWorker("resource:///modules/PageThumbsWorker.js");
this._worker.addEventListener("message", this);
return this._worker;
},
Expand Down

0 comments on commit 7088e20

Please sign in to comment.