hashtags: replace space -> _
This commit is contained in:
parent
e059e079aa
commit
5510abff1d
|
|
@ -59,7 +59,7 @@ async def create_metadata_for_item(
|
||||||
|
|
||||||
item_metadata = {
|
item_metadata = {
|
||||||
'name': title,
|
'name': title,
|
||||||
'description': ' '.join([f"#{_h}" for _h in hashtags]),
|
'description': ' '.join([f"#{_h.replace(' ', '_')}" for _h in hashtags]),
|
||||||
'attributes': [
|
'attributes': [
|
||||||
# {
|
# {
|
||||||
# 'trait_type': 'Artist',
|
# 'trait_type': 'Artist',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue