Skip to content

Commit a6cb468

Browse files
authored
fix: remove duplicate config definitions (#46)
This fixes the v2.11.0 release where an extra definition of config structure was accidentally included and preventing MeshChat from starting correctly. Signed-off-by: Gerard Hickey <[email protected]>
1 parent e6e5da7 commit a6cb468

5 files changed

+2
-66
lines changed

.github/workflows/build-meshchat-api-package.yaml

-29
This file was deleted.

.github/workflows/build-meshchat-package.yaml

-34
This file was deleted.

.github/workflows/release-meshchat.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ jobs:
7878
with:
7979
fetch-depth: 0
8080
fetch-tags: true
81-
- uses: ./.github/workflows/publish-docs.yaml
81+
- uses:
82+
./.github/workflows/publish-docs.yaml
8283
with:
8384
build_version: ${{ needs.create-release.outputs.build_version }}

package/populate-meshchat-api-fs.sh

-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,3 @@ sed -i "s%\$GITHUB_REPOSITORY%$GITHUB_REPOSITORY%" $IPK_DIR/CONTROL/control
1313

1414
# Populate the filesystem image for the package
1515
install -D api/meshchat -m 755 $IPK_DIR/www/cgi-bin/meshchat
16-

www/chat.js

100644100755
-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ var enable_video = 0;
66
var messages = new Messages();
77
let alert = new Audio('alert.mp3');
88

9-
let config = {};
109
let context = {
1110
config_loaded: false,
1211
debug: true, // let startup funcs show debug

0 commit comments

Comments
 (0)