Skip to content

Commit

Permalink
COMDEVNL-1790 -- Set update function to download the actual release z…
Browse files Browse the repository at this point in the history
…ip, instead of the source of the module with all the extra scripts.
  • Loading branch information
maximj committed Feb 13, 2019
1 parent a2b1344 commit 5d93b9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/controller/payment/mollie/base.php
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ function update()
//save tmp file
$temp_file = MOLLIE_TMP . "/mollieUpdate.zip";
$handle = fopen($temp_file, "w+");
$content = $client->get($info["zipball_url"], false, false);
$content = $client->get($info["assets"][0]["browser_download_url"], false, false);
fwrite($handle, $content);
fclose($handle);

Expand Down

0 comments on commit 5d93b9f

Please sign in to comment.