Skip to content

Commit a1845d0

Browse files
committed
typofix in table name
1 parent 4ee9439 commit a1845d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/User.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ public static function getStorage($userId) {
178178
public static function setStorage($userId, $storageUrl) {
179179
Db::connect();
180180
$query = Db::$pdo->prepare(
181-
'INSERT OR REPLACE INTO storage VALUES(:userId, :storageUrl)'
181+
'INSERT OR REPLACE INTO userStorage VALUES(:userId, :storageUrl)'
182182
);
183183
$query->execute([
184184
':userId' => $userId,

0 commit comments

Comments
 (0)