linagora / Twake

Twake is a secure open source collaboration platform to improve organizational productivity.
https://twake.app
GNU Affero General Public License v3.0
1.79k stars 195 forks source link

Issue to login mobile #2567

Open killmasta93 opened 2 years ago

killmasta93 commented 2 years ago

Describe the bug Issue to logging in on mobile self hosted

To Reproduce Steps to reproduce the behavior: 1) change server to my server name 2) tries to login but app crashes

Smartphone (please complete the following information):

Additional context Currently on Desktop application works fine and on web only issue is mobile Currently i have Twake on docker

services:
  mongo:
    container_name: mongo
    image: mongo:4.4.6
    volumes:
      - ./docker-data/mongo:/data/db

  node:
    image: twaketech/twake-node:latest
    ports:
      - 3000:3000
      - 8083:3000
    environment:
      - DEV=production
      - SEARCH_DRIVER=mongodb
      - DB_DRIVER=mongodb
      - PUBSUB_TYPE=local
    volumes:
      - ./configuration/backend-node/production.json:/usr/src/app/config/production.json
      - ./docker-data/documents/:/storage/
    depends_on:
      - mongo
    links:
      - mongo

Thank you