зеркало из https://github.com/mozilla/gecko-dev.git
Bug 811341 - Make sure we submit if we are already online. r=fabrice
--HG-- extra : rebase_source : 6b22139e0b267f413cdd385092f12dfedf2419f4
This commit is contained in:
Родитель
a2d6b0beda
Коммит
a1644bf448
|
@ -113,6 +113,10 @@ var shell = {
|
|||
|
||||
// This function submits a crash when we're online.
|
||||
submitCrash: function shell_submitCrash(aCrashID) {
|
||||
if (!Services.io.offline) {
|
||||
this.CrashSubmit.submit(aCrashID);
|
||||
return;
|
||||
}
|
||||
Services.obs.addObserver(function observer(subject, topic, state) {
|
||||
if (state == 'online') {
|
||||
shell.CrashSubmit.submit(aCrashID);
|
||||
|
|
Загрузка…
Ссылка в новой задаче