commit | 60b155d78215a05a53983f41c8bb74807a2798dd | [log] [tgz] |
---|---|---|
author | Adrià Vilanova Martínez <me@avm99963.com> | Sat Aug 28 01:56:38 2021 +0200 |
committer | Adrià Vilanova Martínez <me@avm99963.com> | Sat Aug 28 01:57:47 2021 +0200 |
tree | e144fed2c6afe2bc0c6c0fe353313b1d86b90555 | |
parent | 158472627f1916b117d05cd3a7fc2e50608b010f [diff] |
Fix minor bug when constructing error message Change-Id: I6a6674bc659472821dd97d4a1f8c491f5efe8121
diff --git a/src/contentScripts/communityConsole/autoRefresh.js b/src/contentScripts/communityConsole/autoRefresh.js index ea7d32f..ae11751 100644 --- a/src/contentScripts/communityConsole/autoRefresh.js +++ b/src/contentScripts/communityConsole/autoRefresh.js
@@ -252,7 +252,7 @@ if (this.lastTimestamp === undefined) console.error( 'autorefresh_list: Unexpected body of response (' + - (body?.['1']?.['2']?.[0] === undefined ? + (e.detail.body?.['1']?.['2']?.[0] === undefined ? 'no threads were returned' : 'the timestamp value is not present in the first thread') + ').');