Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Neto committed Feb 2, 2025
1 parent a3ba4f3 commit f057c71
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ services:
- "${SOCKET_PORT:-2053}:${SOCKET_PORT:-2053}"
- "${HTTP_PORT:-80}:80"
- "${HTTPS_PORT:-443}:443"
- "3000:3000"
- "${WEBRTC_PORT:-3000}:${WEBRTC_PORT:-3000}"
volumes:
- "./.compose/HLS:/HLS"
- "./:/var/www/html/AVideo"
Expand Down Expand Up @@ -86,7 +86,7 @@ services:
- app_net

live:
build:
build:
context: .
dockerfile: Dockerfile.live
restart: "unless-stopped"
Expand Down
4 changes: 2 additions & 2 deletions view/videoComments.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
if (User::canSeeCommentTextarea()) {
if (!empty($advancedCustom->commentsNoIndex)) {
echo "<!--googleoff: all-->";
echo "<!-- advancedCustom->commentsNoIndex-->";
}
include $global['systemRootPath'] . 'view/videoComments_textarea.php';
$commentTemplate = json_encode(file_get_contents($global['systemRootPath'] . 'view/videoComments_template.php'));
Expand Down Expand Up @@ -584,4 +584,4 @@ function addCommentCount(comments_id, total) {
echo "<!--googleon: all-->";
}
}
?>
?>

0 comments on commit f057c71

Please sign in to comment.