diff --git a/README.md b/README.md index 718543f..c4b3771 100644 --- a/README.md +++ b/README.md @@ -170,10 +170,6 @@ Many more settings can be tweaked. All of them are described in the [default con - Whiteboards are gone if you restart the Server enable "enableFileDatabase" in the config file or export the board to prevent that. - You should be able to customize the layout without ever touching the whiteboard.js (take a look at index.html & main.js) -## ToDo - -- Make undo function more reliable on texts - ## Nginx Reverse Proxy configuration Add this to your server part: diff --git a/scripts/server-backend.js b/scripts/server-backend.js index 9a1c55b..7cf9f13 100644 --- a/scripts/server-backend.js +++ b/scripts/server-backend.js @@ -26,7 +26,7 @@ function startBackendServer(port) { var io = require("socket.io")(server, { path: "/ws-api" }); WhiteboardInfoBackendService.start(io); - console.log("Webserver & socketserver running on port:" + port); + console.log("socketserver running on port:" + port); const { accessToken, enableWebdav } = config.backend;