Skip to content

Commit d6771dc

Browse files
hjoelrvedanshujain
authored andcommitted
Prevent fatal error in set_current_gateway with no WC session
1 parent dbb8ab8 commit d6771dc

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

includes/class-wc-payment-gateways.php

+6-3
Original file line numberDiff line numberDiff line change
@@ -183,10 +183,13 @@ public function set_current_gateway( $gateways ) {
183183
}
184184

185185
$current_gateway = false;
186-
$current = WC()->session->get( 'chosen_payment_method' );
187186

188-
if ( $current && isset( $gateways[ $current ] ) ) {
189-
$current_gateway = $gateways[ $current ];
187+
if ( WC()->session ) {
188+
$current = WC()->session->get( 'chosen_payment_method' );
189+
190+
if ( $current && isset( $gateways[ $current ] ) ) {
191+
$current_gateway = $gateways[ $current ];
192+
}
190193
}
191194

192195
if ( ! $current_gateway ) {

0 commit comments

Comments
 (0)