Skip to content

Commit

Permalink
- Reldens - Items System
Browse files Browse the repository at this point in the history
  • Loading branch information
Damian A. Pastorini committed Jan 8, 2021
1 parent b6e6c4c commit 025b89b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/client/receiver.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class Receiver
processMessage(message)
{
// don't validate the message if the action prefix is not present or at the beginning of the message action:
if(message.act.indexOf(ItemsConst.ACTIONS_PREF) !== 0){
if(message.act && message.act.indexOf(ItemsConst.ACTIONS_PREF) !== 0){
return false;
}
if(!sc.hasOwn(this.actions, message.act)){
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@reldens/items-system",
"scope": "@reldens",
"version": "0.9.3-beta.2",
"version": "0.9.3-beta.3",
"description": "Reldens - Items System",
"author": "Damian A. Pastorini",
"license": "MIT",
Expand Down

0 comments on commit 025b89b

Please sign in to comment.