Skip to content

Commit 70efff7

Browse files
author
Jacob Bare
authored
Merge pull request #102 from solocommand/embed-object-handling
Embed object handling
2 parents cfd01ca + d4760c8 commit 70efff7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Models/Embed.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function getHash()
5959
$value = $value->getTimestamp();
6060
break;
6161
case 'object':
62-
$value = (array) $object;
62+
$value = (array) $value;
6363
ksort($value);
6464
break;
6565
case 'mixed':

src/Version.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
*/
1010
class Version
1111
{
12-
const VERSION = '0.3.16';
13-
const ID = 3016;
12+
const VERSION = '0.3.17';
13+
const ID = 3017;
1414
const MAJOR = 0;
1515
const MINOR = 3;
16-
const PATCH = 16;
16+
const PATCH = 17;
1717
const EXTRA = '';
1818
}

0 commit comments

Comments
 (0)