Don't not load the event if it was videod before
This commit is contained in:
parent
409545b386
commit
8a14d6f4d2
|
@ -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";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue