Skip to content

Commit

Permalink
Fix signature generation (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
Butochnikov authored and jhaoda committed Sep 27, 2019
1 parent 19ce0cd commit 5a25d7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Payment.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public function getPaymentUrl()
throw new InvalidInvoiceIdException();
}

$signature = vsprintf('%s:%01.2f:%u:%s', [
$signature = vsprintf('%s:%01.2F:%u:%s', [
// '$login:$OutSum:$InvId:$passwordPayment'
$this->login,
$this->data['OutSum'],
Expand Down

3 comments on commit 5a25d7b

@jenokizm
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Очень странный фикс, потому как у меня прежняя версия с 2f отлично работает и по сей день.

@jhaoda
Copy link
Member

@jhaoda jhaoda commented on 5a25d7b Apr 29, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jenokizm но и с фиксом работает?

@jenokizm
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jenokizm но и с фиксом работает?

не знаю, не проверял)) пока все работает обновлять не буду, кроме того я там какие то дополнительные поля дописывал поэтому обновление убьет мои правки. но эта строчка проверил не трогал - осталась в первоначальном виде.

Please sign in to comment.