Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update/fix p3 #43

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function () {
'callback' => function ( Container $container ) {

if ( ! defined( 'NFD_MIGRATION_MODULE_VERSION' ) ) {
define( 'NFD_MIGRATION_MODULE_VERSION', '1.0.5' );
define( 'NFD_MIGRATION_MODULE_VERSION', '1.0.6' );
}
$brand = $container->plugin()->id;
if ( 'atomic' === getContext( 'platform' ) ) {
Expand Down
2 changes: 1 addition & 1 deletion build/index.asset.php
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-i18n'), 'version' => '5984a9e5a2eec310162a');
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-i18n'), 'version' => '34db5f1d78a4655e5504');
3 changes: 2 additions & 1 deletion includes/Services/InstaMigrateService.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ class InstaMigrateService {
* Set required api keys for insta to initiate the migration
*/
public function __construct() {
$this->insta_api_key = UtilityService::get_insta_api_key( BRAND_PLUGIN );
// comment this out so we don't hammer the key service anymore
// $this->insta_api_key = UtilityService::get_insta_api_key( BRAND_PLUGIN );
}

/**
Expand Down
Loading
Loading