hashtags: replace space -> _

This commit is contained in:
user 2025-03-06 18:43:16 +03:00
parent e059e079aa
commit 5510abff1d
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ async def create_metadata_for_item(
item_metadata = {
'name': title,
'description': ' '.join([f"#{_h}" for _h in hashtags]),
'description': ' '.join([f"#{_h.replace(' ', '_')}" for _h in hashtags]),
'attributes': [
# {
# 'trait_type': 'Artist',