Skip to content

Commit

Permalink
Squashed commit of the following:
Browse files Browse the repository at this point in the history
commit 675483f
Author: dpomier <[email protected]>
Date:   Fri Feb 19 15:49:46 2021 +0100

    add missing putText

    closes boorik#25
  • Loading branch information
dpomier committed Feb 22, 2021
1 parent dee9320 commit ea3af04
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions com/smartfoxserver/v2/entities/data/SFSObject.hx
Original file line number Diff line number Diff line change
Expand Up @@ -507,6 +507,12 @@ class SFSObject implements ISFSObject
dataHolder[key] = new SFSDataWrapper(SFSDataType.UTF_STRING, value);
}

/** @inheritDoc */
public function putText(key:String, value:String):Void
{
dataHolder[key] = new SFSDataWrapper(SFSDataType.TEXT, value);
}

// Arrays

/** @inheritDoc */
Expand Down

0 comments on commit ea3af04

Please sign in to comment.