hashtags: replace space -> _
This commit is contained in:
parent
e059e079aa
commit
5510abff1d
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in New Issue