소스 검색

增加缩小播放按钮实验

xueyiming 7 달 전
부모
커밋
f28c53f453
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      long-article-server/src/main/java/com/tzld/piaoquan/longarticle/service/remote/impl/VideoServiceImpl.java

+ 2 - 2
long-article-server/src/main/java/com/tzld/piaoquan/longarticle/service/remote/impl/VideoServiceImpl.java

@@ -124,7 +124,7 @@ public class VideoServiceImpl implements VideoService {
         return null;
     }
 
-    private static String getCoverImgPath(String shareImgPath) {
+    private String getCoverImgPath(String shareImgPath) {
         String[] split = shareImgPath.split("/");
         StringBuilder stringBuilder = new StringBuilder();
         for (String s : split) {
@@ -139,7 +139,7 @@ public class VideoServiceImpl implements VideoService {
     }
 
 
-    private static String getSmallPlayImgPath(String coverImgPath) {
+    private String getSmallPlayImgPath(String coverImgPath) {
         return coverImgPath + "/watermark,image_eXNoL3BpYy93YXRlcm1hcmtlci9pY29uX3BsYXlfd2hpdGUucG5nP3gtb3NzLXByb2Nlc3M9aW1hZ2UvcmVzaXplLHdfMzY=,g_center";
     }