Unverified Commit 1ec3b8bf authored by Simon Esposito's avatar Simon Esposito Committed by GitHub
Browse files

Fix subscription expiry tracking. (#930)

parent 798dd5ab
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@ The format is based on [keep a changelog](http://keepachangelog.com) and this pr
- Include subscriptions in all data deletion from the developer console.
- Correct return format of JavaScript runtime account export function.
- Add user id to JS runtime wallet operations returned results.
- Fix a bug which would prevent subscriptions to be stored when validating with persist set to true.

## [3.13.1] - 2022-08-18
### Fixed
+1 −1
Original line number Diff line number Diff line
@@ -475,7 +475,7 @@ ON CONFLICT
    (original_transaction_id)
DO
	UPDATE SET
		expire_time = $8,
		expire_time = $7,
		update_time = now()
RETURNING
    create_time, update_time, expire_time