Fixed incorrect argument order again

This commit is contained in:
斟酌 鵬兄 2023-02-01 07:48:03 +08:00
parent e8778acf66
commit deb18f0eb5

View File

@ -39,7 +39,7 @@ class Session extends EventEmitter
this.ready = false;
this.exists = false;
Client.HGETALL( this.id, function( err, obj )
Client.HGETALL( this.id, function( obj, err )
{
if( err ) throw err;