Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Model/Job.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ public function prepare()

$this->setDecodedData($decodedData);

if (isset($decodedData['store_id'])) {
$this->setStoreId($decodedData['store_id']);
if (isset($decodedData['storeId'])) {
$this->setStoreId($decodedData['storeId']);
}
}

Expand Down
2 changes: 1 addition & 1 deletion Model/Queue.php
Original file line number Diff line number Diff line change
Expand Up @@ -580,7 +580,7 @@ protected function stackSortedJobs(array $sortedJobs, array $tempSortableJobs, J
SORT_ASC,
'method',
SORT_ASC,
'store_id',
'storeId',
SORT_ASC,
'job_id',
SORT_ASC
Expand Down