Skip to content
This repository has been archived by the owner on Nov 9, 2022. It is now read-only.

Commit

Permalink
Plain file restore fix
Browse files Browse the repository at this point in the history
Plain file restore fix
  • Loading branch information
nielsengelen committed Jun 5, 2019
1 parent 0fdf07c commit 55c0caa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion onedrive.php
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@
var itemname = $(this).data("itemname");
var userid = $(this).data("userid");
var rid = "<?php echo $rid; ?>";
var json = '{ "save" : null }';
var json = '{ "save" : { "asZip" : "false" } }';

$.get("veeam.php", {"action" : "exportonedriveitem", "itemid" : itemid, "userid" : userid, "rid" : rid, "json" : json, "type" : filetype}).done(function(data) {
e.preventDefault();
Expand Down
2 changes: 1 addition & 1 deletion sharepoint.php
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,7 @@
var itemname = $(this).data("itemname");
var siteid = $(this).data("siteid");
var rid = "<?php echo $rid; ?>";
var json = '{ "save" : null }';
var json = '{ "save" : { "asZip" : "false" } }';

$.get("veeam.php", {"action" : "exportsharepointitem", "itemid" : itemid, "siteid" : siteid, "rid" : rid, "json" : json, "type" : filetype}).done(function(data) {
e.preventDefault();
Expand Down

0 comments on commit 55c0caa

Please sign in to comment.