Commit a978cf85 authored by Xiaowu Zhang's avatar Xiaowu Zhang

httpStorage accept mp4 format

parent d8513aa2
......@@ -9978,7 +9978,7 @@ decodeURI, encodeURI*/
result = result.substring(index + 7);
index = result.indexOf("\">");
url = result.substring(0, index);
if (url.indexOf(".mp3") === -1) {
if (url.indexOf(".mp3") === -1 && url.indexOf(".mp4") === -1) {
result = result.substring(index + 2);
} else {
name = decodeURI(url);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment