Skip to content

Commit

Permalink
MBS-9505: Extend amending delay from 1h to 1 day
Browse files Browse the repository at this point in the history
  • Loading branch information
yvanzo committed Oct 19, 2017
1 parent 5ee33b1 commit 618e910
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/MusicBrainz/Server/Edit/Role/AllowAmending.pm
Expand Up @@ -28,7 +28,7 @@ if it has been created by the same editor less than an hour ago.
WHERE edit_$entity_type.$entity_type = ?
AND edit.editor = ?
AND edit.type = $create_edit_type
AND (now() - edit.open_time) < interval '1 hour'
AND (now() - edit.open_time) < interval '1 day'
", $amended_entity_id, $self->editor_id);

return defined $add_entity_edit;
Expand Down

0 comments on commit 618e910

Please sign in to comment.