Skip to content

Commit

Permalink
Update to 0.1.15
Browse files Browse the repository at this point in the history
  • Loading branch information
auralia committed Dec 24, 2017
1 parent 0b0e145 commit af58edd
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.15 ##

* Bug fixes

## 0.1.14 ##

* Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion docs/globals.html
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ <h3>API_<wbr>VERSION</h3>
<section class="tsd-panel tsd-member tsd-kind-variable">
<a name="version" class="tsd-anchor"></a>
<h3>VERSION</h3>
<div class="tsd-signature tsd-kind-icon">VERSION<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"0.1.14"</span><span class="tsd-signature-symbol"> =&nbsp;&quot;0.1.14&quot;</span></div>
<div class="tsd-signature tsd-kind-icon">VERSION<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">"0.1.15"</span><span class="tsd-signature-symbol"> =&nbsp;&quot;0.1.15&quot;</span></div>
<aside class="tsd-sources">
<ul>
<li>Defined in api.ts:53</li>
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nsapi",
"version": "0.1.14",
"version": "0.1.15",
"description": "Provides access to the NationStates API",
"keywords": [
"NationStates",
Expand Down
4 changes: 2 additions & 2 deletions src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const xmlParser = new xml2js.Parser({
/**
* The version of nsapi.
*/
export const VERSION = "0.1.14";
export const VERSION = "0.1.15";

/**
* The version specified in API requests.
Expand Down Expand Up @@ -824,7 +824,7 @@ export class NsApi {
response.on("end", () => {
this._requestInProgress = false;
this._lastRequestTime = Date.now();
if (tg) {
if (typeof tg !== "undefined") {
this._lastTgTime = this._lastRequestTime;
}

Expand Down

0 comments on commit af58edd

Please sign in to comment.