tiny tweaks
This commit is contained in:
parent
b8d85ad2b3
commit
0ce4610c0c
@ -63,9 +63,12 @@ class SkinlibController extends Controller
|
|||||||
public function show(Filter $filter, $tid)
|
public function show(Filter $filter, $tid)
|
||||||
{
|
{
|
||||||
$texture = Texture::find($tid);
|
$texture = Texture::find($tid);
|
||||||
|
/** @var User */
|
||||||
$user = Auth::user();
|
$user = Auth::user();
|
||||||
|
/** @var FilesystemAdapter */
|
||||||
|
$disk = Storage::disk('textures');
|
||||||
|
|
||||||
if (!$texture || $texture && !Storage::disk('textures')->has($texture->hash)) {
|
if (!$texture || $texture && $disk->missing($texture->hash)) {
|
||||||
if (option('auto_del_invalid_texture')) {
|
if (option('auto_del_invalid_texture')) {
|
||||||
if ($texture) {
|
if ($texture) {
|
||||||
$texture->delete();
|
$texture->delete();
|
||||||
@ -289,6 +292,7 @@ class SkinlibController extends Controller
|
|||||||
public function delete(Request $request)
|
public function delete(Request $request)
|
||||||
{
|
{
|
||||||
$texture = Texture::find($request->tid);
|
$texture = Texture::find($request->tid);
|
||||||
|
/** @var User */
|
||||||
$user = Auth::user();
|
$user = Auth::user();
|
||||||
|
|
||||||
if (!$texture) {
|
if (!$texture) {
|
||||||
|
Loading…
Reference in New Issue
Block a user