| Index: src/org/adblockplus/android/AdblockPlus.java |
| =================================================================== |
| --- a/src/org/adblockplus/android/AdblockPlus.java |
| +++ b/src/org/adblockplus/android/AdblockPlus.java |
| @@ -454,6 +454,11 @@ |
| */ |
| public void stopInteractive() |
| { |
| + // onStop is sometimes called without prior calling onStart |
| + // by Android system |
| + if (js == null) |
|
Felix Dahlke
2012/11/28 08:12:56
This is the same safe guard as in issue 8956033 -
Andrey Novikov
2012/11/28 08:25:01
If the problem will occur elsewhere I will do.
|
| + return; |
| + |
| js.execute(new Runnable() |
| { |
| @Override |