mirror of
https://github.com/KnugiHK/WhatsApp-Chat-Exporter.git
synced 2026-05-19 23:37:36 +00:00
Add placeholder for Android on polls
This commit is contained in:
@@ -578,12 +578,11 @@ def process_messages(args, data: ChatCollection) -> None:
|
|||||||
filter_chat, args.filter_empty
|
filter_chat, args.filter_empty
|
||||||
)
|
)
|
||||||
|
|
||||||
# Process polls (iOS only)
|
# Process polls
|
||||||
if args.ios:
|
message_handler.polls(
|
||||||
message_handler.polls(
|
db, data, args.filter_date,
|
||||||
db, data, args.filter_date,
|
filter_chat, args.filter_empty
|
||||||
filter_chat, args.filter_empty
|
)
|
||||||
)
|
|
||||||
|
|
||||||
# Process calls
|
# Process calls
|
||||||
process_calls(args, db, data, filter_chat, timing)
|
process_calls(args, db, data, filter_chat, timing)
|
||||||
|
|||||||
@@ -1134,6 +1134,10 @@ def _construct_call_description(content, call):
|
|||||||
return description
|
return description
|
||||||
|
|
||||||
|
|
||||||
|
def polls(db, data, date_filter, chat_filter, empty_filter):
|
||||||
|
"""Placeholder for future polls processing implementation."""
|
||||||
|
return
|
||||||
|
|
||||||
# TODO: Marked for enhancement on multi-threaded processing
|
# TODO: Marked for enhancement on multi-threaded processing
|
||||||
def create_html(
|
def create_html(
|
||||||
data,
|
data,
|
||||||
|
|||||||
Reference in New Issue
Block a user