Changeset 864 in ProjectBuilder for projects/CDDBeditor/devel


Ignore:
Timestamp:
Oct 18, 2009, 8:28:31 PM (15 years ago)
Author:
Bruno Cornec
Message:

Fixes for latest CDDB_get version 2.2.7 and its cddb_get returned structure

File:
1 edited

Legend:

Unmodified
Added
Removed
  • projects/CDDBeditor/devel/CDDBeditor/bin/CDDBeditor

    r860 r864  
    211211$mode_group = Newt::HRadiogroup($ce_cddb_mode{"0"}, $ce_cddb_mode{"1"});
    212212if ($ce_config{"CDDB_MODE"} eq "http" ) {
     213    $width = 40;
    213214    $proxy_entry = Newt::Entry($width, $flag, $ce_config{"HTTP_PROXY"});
    214215}
     
    301302
    302303    # CDDB query if first time
    303     if ($firsttime eq 1) {
    304         ($ce_cd) = get_cddb(\%ce_config)
     304    if ($firsttime == 1) {
     305        my %ce_cd = get_cddb(\%ce_config);
     306        $ce_cd = \%ce_cd;
    305307    }
    306308    $firsttime = 0;
    307309
     310    #print Dumper($ce_cd)."\n";
     311    #exit 0;
    308312    if (not defined $ce_cd->{title}) {
    309313        # Get the disc id first
Note: See TracChangeset for help on using the changeset viewer.