--- thunar-volman-0.1.2.orig/thunar-volman/tvm-block-device.c 2007-08-03 22:48:07.480746516 +0200 +++ thunar-volman-0.1.2/thunar-volman/tvm-block-device.c 2007-08-03 23:07:03.902642827 +0200 @@ -252,6 +252,7 @@ gboolean autorun; gchar *autoplay_command; gchar *path_video_ts; + gchar *path_video_ts2; gchar *path_autoopen; gchar *path_autorun; gchar line[1024]; @@ -270,7 +271,8 @@ /* check if we have a video CD or video DVD here */ path_vcd = g_build_filename (mount_point, "vcd", NULL); path_video_ts = g_build_filename (mount_point, "video_ts", NULL); - if (g_file_test (path_vcd, G_FILE_TEST_IS_DIR) || g_file_test (path_video_ts, G_FILE_TEST_IS_DIR)) + path_video_ts2 = g_build_filename (mount_point, "VIDEO_TS", NULL); + if (g_file_test (path_vcd, G_FILE_TEST_IS_DIR) || g_file_test (path_video_ts, G_FILE_TEST_IS_DIR) || g_file_test (path_video_ts2, G_FILE_TEST_IS_DIR)) { /* try to spawn the preferred video CD/DVD-Player */ result = tvm_run_command (context, udi, autoplay_command, device_file, mount_point, error);