Comment 6 for bug 992262

Revision history for this message
Conor Curran (cjcurran) wrote :

No problem, found the bug. AFAIR
I specifically handled the amarok case below but instead I should be returning the second entry in the array.

  private static string? determine_key(owned string desktop_or_interface)
    var temp = result.split("-");
    if (temp != null && temp.length > 1){
      result = temp[0];
    }

Therefore
      result = temp[1]

will SRU asap.