3
0
mirror of https://github.com/Qortal/q-tube.git synced 2025-02-11 09:45:51 +00:00

Fixed bug that sometimes makes the channel page not load videos properly.

Added Privacy category
This commit is contained in:
Qortal Dev 2025-01-28 11:23:53 -07:00
parent 5d795766c3
commit cf853d4401
2 changed files with 2 additions and 1 deletions

View File

@ -41,6 +41,7 @@ export const categories = [
{ id: 26, name: "Qortal" },
{ id: 27, name: "Paranormal" },
{ id: 28, name: "Spirituality" },
{ id: 29, name: "Privacy" },
{ id: 99, name: "Other" },
].sort(sortCategory);

View File

@ -33,7 +33,7 @@ export const VideoListComponentLevel = ({ mode }: VideoListProps) => {
isLoading.value = true;
try {
const offset = videos.length;
const url = `/arbitrary/resources/search?mode=ALL&service=DOCUMENT&query=${QTUBE_VIDEO_BASE}_&limit=20&includemetadata=false&reverse=true&excludeblocked=true&name=${paramName}&exactmatchnames=true&offset=${offset}`;
const url = `/arbitrary/resources/search?mode=ALL&service=DOCUMENT&query=${QTUBE_VIDEO_BASE}&limit=20&includemetadata=false&reverse=true&excludeblocked=true&name=${paramName}&exactmatchnames=true&offset=${offset}`;
const response = await fetch(url, {
method: "GET",
headers: {