Don't not load the event if it was videod before

This commit is contained in:
Isaac Connor 2016-05-30 14:57:46 -04:00
parent 409545b386
commit 8a14d6f4d2
1 changed files with 5 additions and 3 deletions

View File

@ -265,9 +265,11 @@ sub Sql {
if ( $self->{AutoArchive} ) { if ( $self->{AutoArchive} ) {
push @auto_terms, "E.Archived = 0"; push @auto_terms, "E.Archived = 0";
} }
if ( $self->{AutoVideo} ) { # Don't do this, it prevents re-generation and concatenation.
push @auto_terms, "E.Videoed = 0"; # If the file already exists, then the video won't be re-recreated
} #if ( $self->{AutoVideo} ) {
#push @auto_terms, "E.Videoed = 0";
#}
if ( $self->{AutoUpload} ) { if ( $self->{AutoUpload} ) {
push @auto_terms, "E.Uploaded = 0"; push @auto_terms, "E.Uploaded = 0";
} }