randydev commited on
Commit
441fb2e
·
verified ·
1 Parent(s): 19c829e

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +17 -19
main.py CHANGED
@@ -55,25 +55,23 @@ async def get_user_story(link=None):
55
  # return {"done": "nothing"}
56
  except Exception as e:
57
  return {"error": str(e)}
58
- file_id = (
59
- stories.video.file_id or stories.photo.file_id
60
- )
61
- caption = stories.caption or f"By {user_client.me.mention}"
62
- return {
63
- "id": stories.id,
64
- "date": stories.date,
65
- "expire_date": stories.expire_date,
66
- "media": stories.media,
67
- "has_protected_content": stories.has_protected_content,
68
- "random_file_id": file_id,
69
- "caption": caption,
70
- "edited": stories.edited,
71
- "pinned": stories.pinned,
72
- "close_friends": stories.close_friends,
73
- "contacts": stories.contacts,
74
- "selected_contacts": stories.selected_contacts,
75
- "outgoing": stories.outgoing
76
- }
77
 
78
  @fast_app.get("/user/get_user")
79
  async def get_user(user_id=None):
 
55
  # return {"done": "nothing"}
56
  except Exception as e:
57
  return {"error": str(e)}
58
+ if stories:
59
+ for story in stories:
60
+ file_id = (
61
+ story.photo.file_id if story and story.photo else None
62
+ or story.video.file_id if story and story.video else None
63
+ )
64
+ caption = story.caption or f"By {user_client.me.mention}"
65
+ if file_id:
66
+ return {
67
+ "random_file_id": file_id,
68
+ "caption": caption
69
+ }
70
+ else:
71
+ return {
72
+ "random_file_id": None,
73
+ "caption": None
74
+ }
 
 
75
 
76
  @fast_app.get("/user/get_user")
77
  async def get_user(user_id=None):