Skip to content

Commit b0d242d

Browse files
committed
Fix developer id
1 parent 890e1bc commit b0d242d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/dbcon/queries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ def clean_app_df(df: pd.DataFrame) -> pd.DataFrame:
535535
df["rating"] = df["rating"].apply(lambda x: round(x, 2) if x else 0)
536536
ios_link = "https://apps.apple.com/us/app/-/id"
537537
play_link = "https://play.google.com/store/apps/details?id="
538-
play_dev_link = "https://play.google.com/store/apps/developer?id="
538+
play_dev_link = "https://play.google.com/store/apps/dev?id="
539539
ios_dev_link = "https://apps.apple.com/us/developer/-/id"
540540
df["store_link"] = (
541541
np.where(df["store"].str.contains("Google"), play_link, ios_link)

0 commit comments

Comments
 (0)