| Index: modules/downloadserver/files/site.conf |
| =================================================================== |
| --- a/modules/downloadserver/files/site.conf |
| +++ b/modules/downloadserver/files/site.conf |
| @@ -20,5 +20,13 @@ |
| location /devbuilds |
| { |
| + # This is necessary since ABP for Android revisions 323 to 337 crash when |
| + # detecting an update. Fortunately, we repeated the revision in addonVersion |
| + # in these versions for some reason, so we can use that pattern to detect |
| + # them. |
| + if ($query_string ~ "addonVersion=1\.2\.1\.3\d\d\.3\d\d") |
|
Wladimir Palant
2014/09/29 11:36:01
Please check $arg_addonVersion here.
Felix Dahlke
2014/09/29 11:49:15
Done. Also anchored the expression properly as dis
|
| + { |
| + return 200 '{}'; |
| + } |
| alias /var/www/devbuilds; |
| } |