diff --git a/sheetsync/sheetsync/streamlog.py b/sheetsync/sheetsync/streamlog.py index c3e58d0..cdbc9f8 100644 --- a/sheetsync/sheetsync/streamlog.py +++ b/sheetsync/sheetsync/streamlog.py @@ -109,6 +109,7 @@ class StreamLogEventsMiddleware(Middleware): 'category': lambda v: v["name"], 'state': lambda v: v.upper() if v else None, 'error': lambda v: None if v == '' else v, + 'tags': lambda v: [tag["tag"] for tag in v], } # Maps DB column names to an encode function to convert from internal format to streamlog. # Omitted columns act as the identity function.