Description
I am getting this weird error that I cannot send voice notes in group chat or 1-1. The webcam button is also disabled. I have checked on all browsers but both stay disabled. Permissions are enabled.
ALSO: Voice notes work from Android app.
Server Setup Information
Its a standard Docker isntallation with 7.4.1 community edition
- Version of Rocket.Chat Server: 7.4.1 Community Edition
- Operating System: Ubuntu
- Deployment Method: docker
- Number of Running Instances: 1
- DB Replicaset Oplog:
- NodeJS Version:
- MongoDB Version: Atlas
- Proxy: Apache reverse proxy 3000
- Firewalls involved: ufw disabled
Any additional Information
Heres’ compose.yml file. Variables are in .env
volumes:
mongodb_data: { driver: local }
services:
rocketchat:
image: ${IMAGE:-registry.rocket.chat/rocketchat/rocket.chat}:${RELEASE:-latest}
restart: always
devices:
- “/dev/snd:/dev/snd”
cap_add:
- SYS_ADMIN
labels:
traefik.enable: “true”
traefik.http.routers.rocketchat.rule: Host(${DOMAIN:-}
)
traefik.http.routers.rocketchat.tls: “true”
traefik.http.routers.rocketchat.entrypoints: https
traefik.http.routers.rocketchat.tls.certresolver: le
environment:
MONGO_URL: “${MONGO_URL:-
mongodb://${MONGODB_ADVERTISED_HOSTNAME:-mongodb}:${MONGODB_INITIAL_PRIMARY_PORT_NUMBER:-27017}/
${MONGODB_DATABASE:-rocketchat}?replicaSet=${MONGODB_REPLICA_SET_NAME:-rs0}}”
MONGO_OPLOG_URL: “${MONGO_OPLOG_URL:
-mongodb://${MONGODB_ADVERTISED_HOSTNAME:-mongodb}:${MONGODB_INITIAL_PRIMARY_PORT_NUMBER:-27017}/
local?replicaSet=${MONGODB_REPLICA_SET_NAME:-rs0}}”
ROOT_URL: ${ROOT_URL:-http://localhost:${HOST_PORT:-3000}}
PORT: ${PORT:-3000}
DEPLOY_METHOD: docker
DEPLOY_PLATFORM: ${DEPLOY_PLATFORM:-}
REG_TOKEN: ${REG_TOKEN:-}
OVERWRITE_SETTING_Enterprise_License: “”
OVERWRITE_SETTING_Enterprise_License_Status: “”
OVERWRITE_SETTING_Enterprise_Enabled: “false”
OVERWRITE_SETTING_Show_Setup_Wizard: completed
depends_on:
- mongodb
expose:
- ${PORT:-3000}
ports:
- “${BIND_IP:-0.0.0.0}:${HOST_PORT:-3000}:${PORT:-3000}”
mongodb:
image: docker.io/bitnami/mongodb:${MONGODB_VERSION:-6.0}
restart: always
volumes:
- mongodb_data:/bitnami/mongodb
environment:
MONGODB_REPLICA_SET_MODE: primary
MONGODB_REPLICA_SET_NAME: ${MONGODB_REPLICA_SET_NAME:-rs0}
MONGODB_PORT_NUMBER: ${MONGODB_PORT_NUMBER:-27017}
MONGODB_INITIAL_PRIMARY_HOST: ${MONGODB_INITIAL_PRIMARY_HOST:-mongodb}
MONGODB_INITIAL_PRIMARY_PORT_NUMBER: ${MONGODB_INITIAL_PRIMARY_PORT_NUMBER:-27017}
MONGODB_ADVERTISED_HOSTNAME: ${MONGODB_ADVERTISED_HOSTNAME:-mongodb}
MONGODB_ENABLE_JOURNAL: ${MONGODB_ENABLE_JOURNAL:-true}
ALLOW_EMPTY_PASSWORD: ${ALLOW_EMPTY_PASSWORD:-yes}