Files
nextcloud-app-api/lib/Db/TaskProcessing
Alexander Piskun ef35b710cf fix: TaskProcessingAPI - unregister provider endpoint (#370)
Found this when writing a small test for **nc_py_api**

without this change `$taskProcessingProvider->id` are always `null` 

```php
$taskProcessingProvider = $this->getExAppTaskProcessingProvider($appId, $name);
if ($taskProcessingProvider !== null) {
	$this->mapper->delete($taskProcessingProvider);
	$this->resetCacheEnabled();
	return $taskProcessingProvider;
}
```

Signed-off-by: Alexander Piskun <bigcat88@icloud.com>
2024-08-23 15:28:28 +03:00
..