Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

Commit

Permalink
🚧 update to 0.1.6 rn to fix major bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
Tdanks2000 committed Dec 20, 2022
1 parent e99c210 commit 85ad211
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
11 changes: 3 additions & 8 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"expo": {
"name": "StreamAble",
"slug": "StreamAble",
"version": "0.1.5",
"version": "0.1.6",
"scheme": "streamable",
"plugins": [
[
Expand All @@ -24,9 +24,7 @@
"fallbackToCacheTimeout": 0,
"url": "https://u.expo.dev/9993d8be-e845-45b5-9a2f-4e65a8877e0f"
},
"assetBundlePatterns": [
"**/*"
],
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.tdanks2000.StreamAble"
Expand All @@ -40,10 +38,7 @@
{
"action": "MAIN",
"data": {},
"category": [
"LEANBACK_LAUNCHER",
"LAUNCHER"
]
"category": ["LEANBACK_LAUNCHER", "LAUNCHER"]
}
],
"package": "com.tdanks2000.StreamAble",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "streamable-app",
"version": "0.1.5",
"version": "0.1.6",
"license": "MIT",
"scripts": {
"start": "expo start",
Expand Down
2 changes: 1 addition & 1 deletion src/utils/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export const getMangaPages = async (id) => {
};

export const getSource = async (episodeId, server) => {
let { data } = await api.get(`/meta/anilist/watch?episodeId=${episodeId}`);
let { data } = await api.get(`/meta/anilist/watch/${episodeId}`);

if (!data)
return {
Expand Down

0 comments on commit 85ad211

Please sign in to comment.