chore: fix some typos in comments

Signed-off-by: goodactive <goodactive@qq.com>
This commit is contained in:
goodactive
2024-04-19 18:00:20 +08:00
parent f405cf2ddf
commit 184e19abbc
3 changed files with 3 additions and 3 deletions

View File

@@ -185,7 +185,7 @@ class ItemController extends Controller
{
// Get the item
$item = Item::find($id);
if ($item->appid === null && $item->class !== null) { // old apps wont have an app id so set it
if ($item->appid === null && $item->class !== null) { // old apps won't have an app id so set it
$app = Application::where('class', $item->class)->first();
if ($app) {
$item->appid = $app->appid;