Skip to content

Commit

Permalink
Fix compilation in vala 0.49+
Browse files Browse the repository at this point in the history
fixes bcedu#104
  • Loading branch information
ichramm committed Mar 7, 2021
1 parent e582d28 commit 60a37c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/VGriveClient.vala
Expand Up @@ -1063,7 +1063,7 @@ namespace App {
}

public DriveFile get_file_info_extra(string file_id, string fields) throws ErrorGoogleDriveAPI {
RequestParam[1] params = new RequestParam[1];
RequestParam[] params = new RequestParam[1];
params[0] = {"fields", fields};
string res = this.make_request("GET", this.api_uri+"/files/"+file_id, params, null, null, false).response;
var parser = new Json.Parser ();
Expand Down

0 comments on commit 60a37c3

Please sign in to comment.