Skip to content

Commit

Permalink
Release 3.1.9-patch1
Browse files Browse the repository at this point in the history
  • Loading branch information
SALTWOOD committed Oct 27, 2024
1 parent a27c70a commit 6ce291e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/Config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class Config {
public readonly debug: boolean = env.get('DEBUG').default("false").asBool();
public readonly disableAccessLog: boolean = env.get('DISABLE_ACCESS_LOG').default("false").asBool();

public static readonly version: string = "3.1.9";
public static readonly version: string = "3.1.9-patch1";

private constructor() { }

Expand Down
1 change: 0 additions & 1 deletion src/Server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1129,7 +1129,6 @@ export class Server {
public setupSocketIO(): void {
const wrapper = function (socket: any, event: string, fn: Function) {
socket.on(event, (...rest: any[]) => {
console.log(rest);
let callback = rest.find((item) => typeof item === "function");
if (!callback) {
console.warn("No callback found in arguments");
Expand Down

0 comments on commit 6ce291e

Please sign in to comment.