@axium/kino 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,14 +12,14 @@ async function toastUpload(upload, name) {
12
12
  io.start(text('kino.uploading', { name }));
13
13
  try {
14
14
  const result = await upload(controller.signal);
15
- await toast('success', text('kino.upload_success'));
15
+ void toast('success', text('kino.upload_success'));
16
16
  return result;
17
17
  }
18
18
  catch (e) {
19
19
  if (e instanceof DOMException && e.name == 'AbortError')
20
- await toast('info', text('kino.upload_cancelled'));
20
+ void toast('info', text('kino.upload_cancelled'));
21
21
  else
22
- await toast('error', e);
22
+ void toast('error', e);
23
23
  }
24
24
  finally {
25
25
  io.done(true);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axium/kino",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "author": "James Prevett <axium@jamespre.dev>",
5
5
  "description": "Movies and TV for Axium",
6
6
  "funding": {