Review of "Cloudflare WARP Indicator" version 3

Details Page Preview

Makes using Cloudflare WARP easier ! To start using it you need to install the warp-cli package. This extension is not affiliated, funded, or in any way associated with Cloudflare.

Extension Homepage
https://github.com/depscian/cloudflare-warp-indicator

No comments.

Diff Against

Files

Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.

All Versions

Version Status
5 Active
4 Active
3 Rejected
2 Rejected
1 Rejected

Previous Reviews on this Version

JustPerfection rejected
`this._connectTimer` is in another class (line 204 `extension.js`). Please remove each timeout in the same class. You can do this in the `Indicator` class: ```js destroy() { if (this._connectTimer) { GLib.source_remove(this._connectTimer); } super.destroy(); } ``` That ways, when you call destroy in line 209 `extension.js`. It will remove the timeout too.