fix random, fml

This commit is contained in:
Flummi 2018-05-26 15:39:03 +02:00
parent 9fe601d0fa
commit 8f709d197e

View File

@ -312,15 +312,15 @@ function Websrv(tlib) {
switch(url[3]) {
case "image":
mimes = ["image/png", "image/gif", "image/jpeg"];
query = "where ("+mimes.map(mime => "`mime` = '"+mime+"'").join(" or ")+") and rand() limit 1";
query = "where "+mimes.map(mime => "`mime` = '"+mime+"'").join(" or ")+" order by rand() limit 1";
break;
case "video":
mimes = ["video/webm", "video/mp4", "video/quicktime"];
query = "where ("+mimes.map(mime => "`mime` = '"+mime+"'").join(" or ")+") and rand() limit 1";
query = "where "+mimes.map(mime => "`mime` = '"+mime+"'").join(" or ")+" order by rand() limit 1";
break;
case "audio":
mimes = ["audio/mpeg", "audio/flac", "audio/x-flac", "audio/ogg"];
query = "where ("+mimes.map(mime => "`mime` = '"+mime+"'").join(" or ")+") and rand() limit 1";
query = "where "+mimes.map(mime => "`mime` = '"+mime+"'").join(" or ")+" order by rand() limit 1";
break;
default:
query = "order by rand() limit 1";