diff --git a/README.md b/README.md
index d11052318..51b7db9a3 100644
--- a/README.md
+++ b/README.md
@@ -28,8 +28,8 @@ Please look at our [gateway](https://github.com/ZorrillosDev/watchit-gateway) 's
[![screenshot](src/render/media/img/layout/nodes.png?raw=true)]()
## More info
-* Visit our site [watchitapp.site](https://watchitapp.site).
-* Try our web app release [web.watchitapp.site](https://web.watchitapp.site).
+* Visit our site [watchit.movie](https://watchit.movie).
+* Try our web app release [web.watchit.movie](https://web.watchit.movie).
* Read our post: [Watchit - Open Movies](https://dev.to/geolffreym/watchit-2b88).
* Read our interview in [Console 94](https://console.substack.com/p/console-94?r=3cbez&utm_campaign=post&utm_medium=web&utm_source=url)
* Check out [the roadmap](https://github.com/ZorrillosDev/watchit-desktop/projects/1) to future features.
diff --git a/package.json b/package.json
index 3c8061b6b..a177f4cf9 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "watchit",
"author": "ZorrillosDev",
- "version": "0.3.3-alpha.3",
+ "version": "0.3.3-alpha.2",
"private": true,
"main": "./src/main/index.js",
"description": "Open movies everywhere",
diff --git a/src/render/core/app/components/Image/index.test.jsx b/src/render/core/app/components/Image/index.test.jsx
index f4d294652..426d43670 100644
--- a/src/render/core/app/components/Image/index.test.jsx
+++ b/src/render/core/app/components/Image/index.test.jsx
@@ -5,7 +5,7 @@ import Image from './index'
/* eslint-disable no-undef */
describe('', () => {
- const src = 'https://gateway.ipfs.io/ipfs/QmcdLW9p1dcYYKBHZdRXEXA4go6Qd3C4ce12khyiCqVNaH/image/medium.jpg'
+ const src = 'https://watchit.mypinata.cloud/ipfs/QmcdLW9p1dcYYKBHZdRXEXA4go6Qd3C4ce12khyiCqVNaH/image/medium.jpg'
it('should render', () => {
const imageComponent = shallow()
@@ -17,7 +17,7 @@ describe('', () => {
const imageComponent = mount()
const imageEl = imageComponent.instance().img
// Image link built using at least one gateway
- const match = settings.gateways.some(gateway => ~imageEl.src.indexOf(gateway))
+ const match = settings.gateways.some(gateway => imageEl.src.includes(gateway))
// eslint-disable-next-line no-undef
expect(match).toBeTruthy()
})
diff --git a/src/render/core/settings.js b/src/render/core/settings.js
index 88bf1b821..1f4112327 100755
--- a/src/render/core/settings.js
+++ b/src/render/core/settings.js
@@ -8,7 +8,7 @@ export default {
// 'https://vps1.phillm.net',
// 'https://vps2.phillm.net',
// 'https://vps3.phillm.net',
- 'https://gateway.ipfs.io',
+ 'https://watchit.mypinata.cloud',
'https://ipfs.infura.io',
// 'https://gateway.pinata.cloud',
...process.env.RUNTIME !== 'web'