|
|
@@ -191,6 +191,11 @@ public class VideoPostQueryImpl implements VideoPostQuery {
|
|
|
return WebResult.notFound();
|
|
|
}
|
|
|
|
|
|
+ int status = videoPost.getStatus();
|
|
|
+ if (status != VideoStatus.publish.getValue() || status != VideoStatus.noVideoFile.getValue()) {
|
|
|
+ return WebResult.notFound();
|
|
|
+ }
|
|
|
+
|
|
|
long loginUser = UserContext.getUser();
|
|
|
long owner = videoPost.getPublishBy();
|
|
|
int scope = videoPost.getScope();
|