Plugin Directory

Changeset 3432434


Ignore:
Timestamp:
01/05/2026 06:31:51 AM (3 months ago)
Author:
secondlinethemes
Message:

up to 1.1.2

Location:
auto-youtube-importer
Files:
169 added
5 edited

Legend:

Unmodified
Added
Removed
  • auto-youtube-importer/trunk/app/ActionScheduler.php

    r3342793 r3432434  
    7373    // Maybe deleted after queued, need to ensure it's fine.
    7474    $has_source_id = (
    75       isset( $meta_map[ 'secondline_youtube_channel_id' ] )
    76       || isset( $meta_map[ 'secondline_youtube_playlist_id' ] )
     75      !empty( $meta_map[ 'secondline_youtube_channel_id' ] )
     76      || !empty( $meta_map[ 'secondline_youtube_playlist_id' ] )
    7777    );
    7878
  • auto-youtube-importer/trunk/app/Helper/Youtube.php

    r3342793 r3432434  
    7272    if( empty( $api_key ) )
    7373      $api_key = YIS_Settings::instance()->get( 'youtube_api_key' );
     74    if( empty( $channel_id ) )
     75      return [];
    7476
    7577    $request_args = [
  • auto-youtube-importer/trunk/app/RestAPI/Response.php

    r3342793 r3432434  
    134134    // Maybe deleted after queued, need to ensure it's fine.
    135135    $has_source_id = (
    136       isset( $meta_map[ 'secondline_youtube_channel_id' ] )
    137       || isset( $meta_map[ 'secondline_youtube_playlist_id' ] )
     136      !empty( $meta_map[ 'secondline_youtube_channel_id' ] )
     137      || !empty( $meta_map[ 'secondline_youtube_playlist_id' ] )
    138138    );
    139139
  • auto-youtube-importer/trunk/auto-youtube-importer.php

    r3342793 r3432434  
    33 * Plugin Name:       Auto YouTube Importer
    44 * Description:       A simple YouTube video importer plugin with automatic / ongoing YouTube sync features.
    5  * Version:           1.1.1
     5 * Version:           1.1.2
    66 * Author:            SecondLineThemes
    77 * Author URI:        https://secondlinethemes.com/
     
    1515    die;
    1616
    17 define( 'YOUTUBE_IMPORTER_SECONDLINE_VERSION', '1.1.1' );
     17define( 'YOUTUBE_IMPORTER_SECONDLINE_VERSION', '1.1.2' );
    1818define( "YOUTUBE_IMPORTER_SECONDLINE_BASE_FILE_PATH", __FILE__ );
    1919define( "YOUTUBE_IMPORTER_SECONDLINE_BASE_PATH", dirname( YOUTUBE_IMPORTER_SECONDLINE_BASE_FILE_PATH ) );
  • auto-youtube-importer/trunk/readme.txt

    r3342793 r3432434  
    44Tags: YouTube, import, sync, video, channel
    55Requires at least: 4.8
    6 Tested up to: 6.6
     6Tested up to: 6.9
    77Requires PHP: 7.1
    8 Stable tag: 1.1.1
     8Stable tag: 1.1.2
    99License: GPLv3 or later
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    7676
    7777= 1.1.1 =
     78* Update core WP version compatibility.
     79* Break when channel/playlist ID is missing to avoid importing random videos.
     80
     81= 1.1.1 =
    7882* Fix missing iframe code.
    7983* Fix channel/playlist name in scheduled imports.
Note: See TracChangeset for help on using the changeset viewer.