Fix error when deleting SoundCloud tracks
This commit is contained in:
parent
0cd9b1d0e5
commit
e033360a4e
2 changed files with 13 additions and 14 deletions
|
@ -114,6 +114,15 @@ abstract class ThirdPartyCeleryService extends ThirdPartyService {
|
|||
$ref->save();
|
||||
}
|
||||
|
||||
/**
|
||||
* Field accessor for $_CELERY_DELETE_TASK_NAME
|
||||
*
|
||||
* @return string the Celery task name for deleting tracks from this service
|
||||
*/
|
||||
public function getCeleryDeleteTaskName() {
|
||||
return static::$_CELERY_DELETE_TASK_NAME;
|
||||
}
|
||||
|
||||
/**
|
||||
* Build a parameter array for the file being uploaded to a third party service
|
||||
*
|
||||
|
@ -123,13 +132,4 @@ abstract class ThirdPartyCeleryService extends ThirdPartyService {
|
|||
*/
|
||||
abstract protected function _getUploadData($file);
|
||||
|
||||
/**
|
||||
* Field accessor for $_CELERY_DELETE_TASK_NAME
|
||||
*
|
||||
* @return string the Celery task name for deleting tracks from this service
|
||||
*/
|
||||
public function getCeleryDeleteTaskName() {
|
||||
return self::$_CELERY_DELETE_TASK_NAME;
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue