Here, throw this in (change the member name of 'mc' if that isnt your phones name) and it will add a convo with a changing name:
default unknown_convo = [
{"ember":"Hey"},
{"mc":"Hey who is this"},
{"ember":"Ember"},
{"mc":"OH! Ill update your name"},
{"code":"""
mc_ember_convo['members'].pop('unknown', None)
mc_ember_convo['members']['ember']= {'profile':'addaprofilepic.png'}
"""},
{"mc":"done"}
]
default mc_ember_convo = build_conversation(
unknown_convo,
member("mc"),
member("unknown", profile = "test/mc_profile.png")
)
You can obviously replace it from wherever you want, i just showed it being done in the phone here.
Remember to always set a profile picture, it will crash if it cant find one (I will make it so it just shows a default instead of crashing at some point). If youre removing and adding the member to change the name, just re set the same one.