ddc fix
This commit is contained in:
parent
00f20b74b9
commit
75dda051b4
3 changed files with 5 additions and 2 deletions
|
@ -1,3 +1,6 @@
|
|||
# 1.2.0+1
|
||||
* Removed a type annotation in `authenticateViaPopup` to prevent breaking with DDC.
|
||||
|
||||
# 1.2.0
|
||||
* `ServiceList` now uses `Equality` from `package:collection` to compare items.
|
||||
* `Service`s will now add service errors to corresponding streams if there is a listener.
|
||||
|
|
|
@ -54,7 +54,7 @@ class Rest extends BaseAngelClient {
|
|||
var wnd = window.open(url, 'angel_client_auth_popup');
|
||||
|
||||
Timer t;
|
||||
StreamSubscription<CustomEvent> sub;
|
||||
StreamSubscription sub;
|
||||
t = new Timer.periodic(new Duration(milliseconds: 500), (timer) {
|
||||
if (!ctrl.isClosed) {
|
||||
if (wnd.closed) {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
name: angel_client
|
||||
version: 1.2.0
|
||||
version: 1.2.0+1
|
||||
description: Client library for the Angel framework.
|
||||
author: Tobe O <thosakwe@gmail.com>
|
||||
homepage: https://github.com/angel-dart/angel_client
|
||||
|
|
Loading…
Reference in a new issue