parsav  Diff

Differences From Artifact [248ab207d4]:

To Artifact [7f970c2f4a]:


     4      4   
     5      5   local terra cs(s: rawstring)
     6      6   	return pstr { ptr = s, ct = lib.str.sz(s) }
     7      7   end
     8      8   
     9      9   local terra 
    10     10   render_conf_profile(co: &lib.srv.convo, path: lib.mem.ptr(pref)): pstr
    11         -
    12     11   	var c = data.view.conf_profile {
    13     12   		handle = cs(co.who.handle);
    14     13   		nym = cs(lib.coalesce(co.who.nym,''));
    15     14   		bio = cs(lib.coalesce(co.who.bio,''));
    16     15   	}
    17     16   	return c:tostr()
    18     17   end
    19     18   
    20     19   return render_conf_profile