Skip to content

Commit

Permalink
Fix block order bug of block upload apis.
Browse files Browse the repository at this point in the history
  • Loading branch information
killing committed Oct 9, 2016
1 parent 19990b9 commit 0fdc2ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/repo-op.c
Original file line number Diff line number Diff line change
Expand Up @@ -918,7 +918,7 @@ json_to_file_list (const char *files_json)
}

json_decref (array);
return files;
return g_list_reverse(files);
}

/*
Expand Down

1 comment on commit 0fdc2ae

@madman2021
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would it be simple to fix a file affected by this ?

Please sign in to comment.