Skip to content
Snippets Groups Projects
Commit 60bff6c5 authored by Thomas Tanghus's avatar Thomas Tanghus
Browse files

Use fetchOne() instead of numRows() when doing a COUNT(*).

parent be402fab
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,7 @@ class Tags implements \OCP\ITags {
\OCP\Util::writeLog('core', __METHOD__. ', DB error: ' . \OCP\DB::getErrorMessage($result), \OCP\Util::ERROR);
return false;
}
return ((int)$result->numRows() === 0);
return ((int)$result->fetchOne() === 0);
} catch(\Exception $e) {
\OCP\Util::writeLog('core', __METHOD__.', exception: '.$e->getMessage(),
\OCP\Util::ERROR);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment