We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sort order is always ascending, even when -r is used. That's because:
1101: $adata = [ reverse @$adata ] if $revsort;
is overwriten by:
509: $j->{data} = [ sort { $a->{stamp} <=> $b->{stamp} } @{$jh->{data}}, @$ja ];
when called:
1161:write_json(catfile($absOut, 'data.json'), \%json, $odata->{data});
The text was updated successfully, but these errors were encountered:
Finalize album image ordering when writing data.json file; fixes reverse
ccf4209
sorting as reported in kensanata#26
No branches or pull requests
Sort order is always ascending, even when -r is used. That's because:
1101: $adata = [ reverse @$adata ] if $revsort;
is overwriten by:
509: $j->{data} = [ sort { $a->{stamp} <=> $b->{stamp} } @{$jh->{data}}, @$ja ];
when called:
1161:write_json(catfile($absOut, 'data.json'), \%json, $odata->{data});
The text was updated successfully, but these errors were encountered: