Skip to content

Commit 17cd521

Browse files
committed
Fix server crash when invalid request is made
1 parent 426013e commit 17cd521

File tree

11 files changed

+59
-58
lines changed

11 files changed

+59
-58
lines changed

api/pubspec.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -343,8 +343,8 @@ packages:
343343
dependency: "direct main"
344344
description:
345345
path: "packages/networker/networker"
346-
ref: "2e0ab5b548cb8e2d64ca24e0d7b4a6cfcc6d57fe"
347-
resolved-ref: "2e0ab5b548cb8e2d64ca24e0d7b4a6cfcc6d57fe"
346+
ref: "4f221c5943ceb786eb7bd427eb71a8cc1346b9b8"
347+
resolved-ref: "4f221c5943ceb786eb7bd427eb71a8cc1346b9b8"
348348
url: "https://github.com/LinwoodDev/dart_pkgs.git"
349349
source: git
350350
version: "1.0.0"

api/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ dependencies:
1919
networker:
2020
git:
2121
url: https://github.com/LinwoodDev/dart_pkgs.git
22-
ref: 2e0ab5b548cb8e2d64ca24e0d7b4a6cfcc6d57fe
22+
ref: 4f221c5943ceb786eb7bd427eb71a8cc1346b9b8
2323
path: packages/networker/networker
2424
dart_leap:
2525
git:

app/pubspec.lock

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -822,26 +822,26 @@ packages:
822822
dependency: "direct main"
823823
description:
824824
path: "packages/networker/networker"
825-
ref: "2e0ab5b548cb8e2d64ca24e0d7b4a6cfcc6d57fe"
826-
resolved-ref: "2e0ab5b548cb8e2d64ca24e0d7b4a6cfcc6d57fe"
825+
ref: "4f221c5943ceb786eb7bd427eb71a8cc1346b9b8"
826+
resolved-ref: "4f221c5943ceb786eb7bd427eb71a8cc1346b9b8"
827827
url: "https://github.com/LinwoodDev/dart_pkgs.git"
828828
source: git
829829
version: "1.0.0"
830830
networker_crypto:
831831
dependency: transitive
832832
description:
833833
path: "packages/networker/networker_crypto"
834-
ref: "1cc2988f680758fcb45c88b3905b0312d8c5a513"
835-
resolved-ref: "1cc2988f680758fcb45c88b3905b0312d8c5a513"
834+
ref: ec6f31ba3eb0da17bdef6a8d66ef6caafcabd908
835+
resolved-ref: ec6f31ba3eb0da17bdef6a8d66ef6caafcabd908
836836
url: "https://github.com/LinwoodDev/dart_pkgs.git"
837837
source: git
838838
version: "1.0.0"
839839
networker_socket:
840840
dependency: "direct main"
841841
description:
842842
path: "packages/networker/networker_socket"
843-
ref: "426b6af52aa7028264d0d725a89d7cd8102e5dda"
844-
resolved-ref: "426b6af52aa7028264d0d725a89d7cd8102e5dda"
843+
ref: ec6f31ba3eb0da17bdef6a8d66ef6caafcabd908
844+
resolved-ref: ec6f31ba3eb0da17bdef6a8d66ef6caafcabd908
845845
url: "https://github.com/LinwoodDev/dart_pkgs.git"
846846
source: git
847847
version: "1.0.0"
@@ -1268,8 +1268,8 @@ packages:
12681268
dependency: "direct main"
12691269
description:
12701270
path: api
1271-
ref: "9e0075b2a2005a4378ec48d44b6fad9cae79d83c"
1272-
resolved-ref: "9e0075b2a2005a4378ec48d44b6fad9cae79d83c"
1271+
ref: "1c15259fc8c5e043997ffcaafbf45348a77e3003"
1272+
resolved-ref: "1c15259fc8c5e043997ffcaafbf45348a77e3003"
12731273
url: "https://github.com/LinwoodDev/Swamp.git"
12741274
source: git
12751275
version: "1.0.0"
@@ -1546,5 +1546,5 @@ packages:
15461546
source: hosted
15471547
version: "3.1.3"
15481548
sdks:
1549-
dart: ">=3.8.0 <4.0.0"
1549+
dart: ">=3.8.1 <4.0.0"
15501550
flutter: ">=3.32.2"

app/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,17 +55,17 @@ dependencies:
5555
networker:
5656
git:
5757
url: https://github.com/LinwoodDev/dart_pkgs.git
58-
ref: 2e0ab5b548cb8e2d64ca24e0d7b4a6cfcc6d57fe
58+
ref: 4f221c5943ceb786eb7bd427eb71a8cc1346b9b8
5959
path: packages/networker/networker
6060
networker_socket:
6161
git:
6262
url: https://github.com/LinwoodDev/dart_pkgs.git
63-
ref: 426b6af52aa7028264d0d725a89d7cd8102e5dda
63+
ref: ec6f31ba3eb0da17bdef6a8d66ef6caafcabd908
6464
path: packages/networker/networker_socket
6565
swamp_api:
6666
git:
6767
url: https://github.com/LinwoodDev/Swamp.git
68-
ref: 9e0075b2a2005a4378ec48d44b6fad9cae79d83c
68+
ref: 1c15259fc8c5e043997ffcaafbf45348a77e3003
6969
path: api
7070
# System Information
7171
dynamic_color: ^1.7.0

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"@phosphor-icons/react": "^2.1.10",
1717
"@types/react": "^19.1.6",
1818
"@types/react-dom": "^19.1.6",
19-
"astro": "^5.9.0",
19+
"astro": "^5.9.1",
2020
"react": "^19.1.0",
2121
"react-dom": "^19.1.0",
2222
"remark-gemoji": "^8.0.0",

docs/pnpm-lock.yaml

Lines changed: 33 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

metadata/en-US/changelogs/6.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
* Fix team changes not being synced correctly in multiplayer
1111
* Add support for defining host for server
1212
* Fix core pack not included in build
13+
* Fix server crash when invalid request is made
1314

1415
Read more here: https://linwood.dev/setonix/0.4.1

plugin/pubspec.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -367,8 +367,8 @@ packages:
367367
dependency: "direct main"
368368
description:
369369
path: "packages/networker/networker"
370-
ref: "2e0ab5b548cb8e2d64ca24e0d7b4a6cfcc6d57fe"
371-
resolved-ref: "2e0ab5b548cb8e2d64ca24e0d7b4a6cfcc6d57fe"
370+
ref: "4f221c5943ceb786eb7bd427eb71a8cc1346b9b8"
371+
resolved-ref: "4f221c5943ceb786eb7bd427eb71a8cc1346b9b8"
372372
url: "https://github.com/LinwoodDev/dart_pkgs.git"
373373
source: git
374374
version: "1.0.0"

plugin/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
networker:
1313
git:
1414
url: https://github.com/LinwoodDev/dart_pkgs.git
15-
ref: 2e0ab5b548cb8e2d64ca24e0d7b4a6cfcc6d57fe
15+
ref: 4f221c5943ceb786eb7bd427eb71a8cc1346b9b8
1616
path: packages/networker/networker
1717
meta: ^1.15.0
1818
dart_mappable: ^4.3.0

server/pubspec.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -400,17 +400,17 @@ packages:
400400
dependency: "direct main"
401401
description:
402402
path: "packages/networker/networker"
403-
ref: "2e0ab5b548cb8e2d64ca24e0d7b4a6cfcc6d57fe"
404-
resolved-ref: "2e0ab5b548cb8e2d64ca24e0d7b4a6cfcc6d57fe"
403+
ref: "4f221c5943ceb786eb7bd427eb71a8cc1346b9b8"
404+
resolved-ref: "4f221c5943ceb786eb7bd427eb71a8cc1346b9b8"
405405
url: "https://github.com/LinwoodDev/dart_pkgs.git"
406406
source: git
407407
version: "1.0.0"
408408
networker_socket:
409409
dependency: "direct main"
410410
description:
411411
path: "packages/networker/networker_socket"
412-
ref: "72c7cdd7a60d98c3a7f587122da83dc8b99b7ed0"
413-
resolved-ref: "72c7cdd7a60d98c3a7f587122da83dc8b99b7ed0"
412+
ref: c296aa4e7667fad124da675f11ca543c44865a61
413+
resolved-ref: c296aa4e7667fad124da675f11ca543c44865a61
414414
url: "https://github.com/LinwoodDev/dart_pkgs.git"
415415
source: git
416416
version: "1.0.0"

0 commit comments

Comments
 (0)