| Index: src/engine/Main.cpp |
| =================================================================== |
| --- a/src/engine/Main.cpp |
| +++ b/src/engine/Main.cpp |
| @@ -323,12 +323,12 @@ |
| void OnUpdateAvailable(AdblockPlus::JsValueList& params) |
| { |
| - updateAvailable = true; |
| if (params.size() < 1) |
| { |
| Debug("updateAvailable event missing URL"); |
| return; |
| } |
| + updateAvailable = true; |
|
Oleksandr
2013/08/09 08:17:39
Probably the most discussed line of code
Felix Dahlke
2013/08/09 09:15:29
Quite definitely :D
|
| updater->SetUrl(params[0]->AsString()); |
| updater->Update(); |