Fixed Unable to rebuild thumbnails via CLI

Jake B.

Well-known member
Affected version
2.2.X
PHP:
<?php

namespace XFMG\Cli\Command\Rebuild;

use XF\Cli\Command\Rebuild\AbstractRebuildCommand;

class RebuildAlbumThumbnails extends AbstractRebuildCommand
{
    protected function getRebuildName()
    {
        return 'xfmg-album-thumbnails';
    }

    protected function getRebuildDescription()
    {
        return 'Rebuilds album thumbnails.';
    }

    protected function getRebuildClass()
    {
        return 'XFMG:AlbumThumb';
    }
}
 
Thank you for reporting this issue, it has now been resolved. We are aiming to include any changes that have been made in a future XFMG release (2.2.5).

Change log:
Add CLI command to rebuild album thumbnails.
There may be a delay before changes are rolled out to the XenForo Community.
 
Top Bottom