<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <meta http-equiv="Content-Style-Type" content="text/css" />
  <meta name="generator" content="pandoc" />
  <title></title>
  <style type="text/css">code{white-space: pre;}</style>
</head>
<body>
<p>Hi Pierre,</p>
<p>On 2016-10-26 15:17, Pierre Ynard wrote:</p>
<blockquote style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;color:#500050">
<blockquote style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;color:#500050">
<pre><code> -            local str = "| "..prefix..tostring(item.id).." - "..item.name
 +            local str = "| "..prefix..tostring(item.id)..
 +                            (item.name == nil and "" or " - "..item.name)</code></pre>
</blockquote>
<pre><code> In lua, only nil and false evaluate to false in boolean context, so I
 think the "== nil" is redundant.</code></pre>
</blockquote>
<p>Indeed, but I reasoned that including the <code>== nil</code> was making the code easier to comprehend.</p>
<blockquote style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;color:#500050">
<pre><code> Also, I don't find this very helpful as you end up with a blank entry,
 that possibly won't play correctly, with no obvious way to query info
 about it. Perhaps it would be more helpful to display something else
 instead if the name is missing.</code></pre>
</blockquote>
<p>The entry still has the numeric identifier, which is unconditionally displayed, so you would still be able to query information about the entity (in case that is wanted).</p>
<p>I do not understand what you mean by <em>“that possibly won’t play correctly”</em>, the “name” property of an item is not mandatory - and will not aid when an item is actually scheduled to be played.</p>
<ul>
<li>could you please elaborate that point?</li>
</ul>
<p>Best Regards,<br />
Filip</p>
<blockquote style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;color:#500050">
<pre><code> -- 
 Pierre Ynard
 "Une âme dans un corps, c'est comme un dessin sur une feuille de papier."
 _______________________________________________
 vlc-devel mailing list
 To unsubscribe or modify your subscription options:
 https://mailman.videolan.org/listinfo/vlc-devel</code></pre>
</blockquote>
</body>
</html>