Plugin Directory

Changeset 3080347


Ignore:
Timestamp:
05/02/2024 11:43:32 AM (2 years ago)
Author:
secondlinethemes
Message:

up to 1.5.0

Location:
podcast-importer-secondline
Files:
142 added
3 edited

Legend:

Unmodified
Added
Removed
  • podcast-importer-secondline/trunk/app/ActionScheduler.php

    r2859108 r3080347  
    7474    }
    7575
    76     $image_contents = wp_remote_get( $image_path );
     76    $corrected_image_path = str_replace('?.jpg', '?img.jpg', $image_path);
     77    $image_contents = wp_remote_get( $corrected_image_path );
    7778    $image_contents = wp_remote_retrieve_body( $image_contents );
    7879
     
    8990
    9091    if( null === $attachment_post_id ) {
    91       $attachment_post_id = media_sideload_image($image_path, $post_id, get_the_title( $post_id ), 'id' );
     92      $attachment_post_id = media_sideload_image($corrected_image_path, $post_id, get_the_title( $post_id ), 'id' );
    9293
    9394      update_post_meta( $attachment_post_id, 'secondline_attachment_md5', md5( $image_contents ) );
  • podcast-importer-secondline/trunk/podcast-importer-secondline.php

    r3055854 r3080347  
    33 * Plugin Name:       Podcast Importer SecondLine
    44 * Description:       A simple podcast import plugin with ongoing podcast feed import features.
    5  * Version:           1.4.9
     5 * Version:           1.5.0
    66 * Author:            SecondLineThemes
    77 * Author URI:        https://secondlinethemes.com/
     
    1515    die;
    1616
    17 define( 'PODCAST_IMPORTER_SECONDLINE_VERSION', '1.4.9' );
     17define( 'PODCAST_IMPORTER_SECONDLINE_VERSION', '1.5.0' );
    1818define( "PODCAST_IMPORTER_SECONDLINE_BASE_FILE_PATH", __FILE__ );
    1919define( "PODCAST_IMPORTER_SECONDLINE_BASE_PATH", dirname( PODCAST_IMPORTER_SECONDLINE_BASE_FILE_PATH ) );
  • podcast-importer-secondline/trunk/readme.txt

    r3055854 r3080347  
    6868
    6969== Changelog ==
     70
     71= 1.5.0 =
     72* Fix: Image import issues with Buzzsprout.
    7073
    7174= 1.4.9 =
Note: See TracChangeset for help on using the changeset viewer.