1
0
mirror of https://github.com/beestat/app.git synced 2025-06-02 21:26:38 -04:00

Fixes API-Q - Failing to delete Patreon tokens

This commit is contained in:
Jon Ziebell 2020-01-20 08:07:41 -05:00
parent 0196ba1e05
commit 5fb835737f

View File

@ -129,7 +129,7 @@ class patreon_token extends cora\crud {
* @return int
*/
public function delete($id) {
$database = database::get_transactionless_instance();
$database = cora\database::get_transactionless_instance();
$return = $database->delete('patreon_token', $id);
return $return;
}