Fix hash conflict dump error
This commit is contained in:
parent
1923f4486b
commit
6c6d32b4eb
@ -430,7 +430,7 @@ final class API
|
|||||||
|
|
||||||
case 'hash_conflict':
|
case 'hash_conflict':
|
||||||
if (App::environment() == 'local')
|
if (App::environment() == 'local')
|
||||||
file_put_contents('/tmp/hash_conflict.'.$method,print_r(json_decode(json_decode($parameters)->view),TRUE));
|
file_put_contents('/tmp/hash_conflict.'.$method,print_r($response,TRUE));
|
||||||
|
|
||||||
throw new SlackHashConflictException('Hash Conflict',$request->status());
|
throw new SlackHashConflictException('Hash Conflict',$request->status());
|
||||||
|
|
||||||
|
@ -4,9 +4,9 @@ namespace Slack\Models;
|
|||||||
|
|
||||||
use Illuminate\Database\Eloquent\Model;
|
use Illuminate\Database\Eloquent\Model;
|
||||||
use Illuminate\Support\Arr;
|
use Illuminate\Support\Arr;
|
||||||
|
use Slack\Traits\ScopeActive;
|
||||||
|
|
||||||
use App\Models\Slack\Team as AppTeam;
|
use App\Models\Slack\Team as AppTeam;
|
||||||
use Slack\Traits\ScopeActive;
|
|
||||||
|
|
||||||
class Channel extends Model
|
class Channel extends Model
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user