Skip to content

Commit

Permalink
fix: hopefully fix search for real this time
Browse files Browse the repository at this point in the history
  • Loading branch information
lart2150 committed Jan 12, 2025
1 parent 239dd7e commit 69b41a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<project name="kmttg" basedir="." default="all">
<property name="rversion" value="v2.9-l"/>
<property name="rversion" value="v2.9.1-l"/>
<tstamp/>
<property name="bversion" value="${DSTAMP}-${TSTAMP}"/>
<property name="lib" value="lib"/>
Expand Down
2 changes: 1 addition & 1 deletion src/com/tivo/kmttg/main/config.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
import com.tivo.kmttg.httpserver.kmttgServer;

public class config {
public static String kmttg = "kmttg v2.9-l";
public static String kmttg = "kmttg v2.9.1-l";

// encoding related
public static String encProfDir = "";
Expand Down
2 changes: 1 addition & 1 deletion src/com/tivo/kmttg/rpc/Remote.java
Original file line number Diff line number Diff line change
Expand Up @@ -2065,7 +2065,7 @@ public JSONObject extendedSearch(
return collections;
}
JSONObject content = new JSONObject(); // Used to avoid duplicate contentId entries
Remote r = new Remote(job.tivoName, true);
Remote r = new Remote(job.tivoName);
if (r.success) {
JSONArray titles = new JSONArray();
int order = 0;
Expand Down

0 comments on commit 69b41a1

Please sign in to comment.